33 lines
812 B
JSON
33 lines
812 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": false,
|
|
"target": "es2021",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"strictPropertyInitialization": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"rootDir": "./src",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"outDir": "./built",
|
|
"types": ["node"],
|
|
"typeRoots": ["./node_modules/@types", "./src/@types"],
|
|
"lib": ["esnext"]
|
|
},
|
|
"compileOnSave": false,
|
|
"include": ["./src/**/*.ts"]
|
|
}
|