hexabot/api/tsconfig.json

28 lines
698 B
JSON
Raw Normal View History

2024-09-10 09:50:11 +00:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
2024-10-18 16:50:35 +00:00
"resolveJsonModule": true,
2024-09-10 09:50:11 +00:00
"esModuleInterop": true,
"paths": {
"@/*": ["src/*"]
}
2024-10-18 16:50:35 +00:00
},
"include": ["src/**/*.ts", "src/**/*.json"]
2024-09-10 09:50:11 +00:00
}