42 lines
829 B
JSON
42 lines
829 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"dom",
|
|
"esnext",
|
|
"ESNext.String"
|
|
],
|
|
"baseUrl": ".",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"isolatedModules": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"incremental": true
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
".next",
|
|
"out",
|
|
"next.config.js",
|
|
"ambience"
|
|
],
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"additional.d.ts",
|
|
"**/*.tsx"
|
|
]
|
|
}
|