49 lines
986 B
JSON
49 lines
986 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"ES2023",
|
|
"ESNext"
|
|
],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node10",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES2021"
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"env.d.ts",
|
|
"./src/**/*.ts"
|
|
],
|
|
"ts-node": {
|
|
"require": [
|
|
"reflect-metadata",
|
|
"tsconfig-paths/register",
|
|
"dotenv-safe/config"
|
|
],
|
|
"swc": true
|
|
}
|
|
}
|