26 lines
648 B
JSON
26 lines
648 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"composite": true
|
|
}
|
|
}
|