37 lines
991 B
JSON
37 lines
991 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"incremental": true,
|
|
"moduleDetection": "force",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"emitDecoratorMetadata": true,
|
|
"downlevelIteration": false,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"useDefineForClassFields": false,
|
|
"importHelpers": true,
|
|
"resolveJsonModule": true,
|
|
"newLine": "LF",
|
|
"skipLibCheck": true,
|
|
"noResolve": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"isolatedModules": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"target": "esnext",
|
|
"plugins": [{ "name": "next" }],
|
|
"allowJs": true,
|
|
"jsx": "preserve",
|
|
"noEmit": true
|
|
}
|
|
}
|