2021-03-22 13:48:48 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2021-06-24 22:15:18 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@components/*": ["components/*"],
|
|
|
|
"@lib/*": ["lib/*"]
|
|
|
|
},
|
2021-03-22 13:48:48 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve"
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|