29 lines
758 B
JSON
29 lines
758 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Node16",
|
|
"lib": ["ES2022", "dom"],
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"inlineSources": false,
|
|
"stripInternal": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"importHelpers": true,
|
|
"downlevelIteration": false,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
// Disallow inconsistently-cased references to the same file
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitOverride": true,
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"composite": true
|
|
},
|
|
}
|