36 lines
850 B
JSON
36 lines
850 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2015",
|
||
|
"module": "ESNext",
|
||
|
"importHelpers": true,
|
||
|
"strict": true,
|
||
|
"noImplicitAny": false,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUncheckedIndexedAccess": true,
|
||
|
"noPropertyAccessFromIndexSignature": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"skipLibCheck": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"dom.iterable",
|
||
|
"esnext"
|
||
|
],
|
||
|
"allowJs": true,
|
||
|
"noEmit": true,
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"esModuleInterop": true
|
||
|
},
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|