Files

29 lines
758 B
JSON
Raw Permalink Normal View History

2022-12-07 18:58:39 -08:00
{
"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",
2022-12-07 19:31:32 -08:00
"outDir": "dist",
"composite": true
2022-12-07 18:58:39 -08:00
},
}