kt-template-online-api/tsconfig.json

29 lines
682 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"ignoreDeprecations": "6.0",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"sourceMap": true,
"outDir": "./dist",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": false,
"paths": {
"@/*": [
"./src/*"
],
}
}
}