hexabot/api/tsconfig.json

37 lines
907 B
JSON
Raw Normal View History

2024-09-10 09:50:11 +00:00
{
"compilerOptions": {
2024-10-26 07:23:02 +00:00
"typeRoots": ["./node_modules/@types", "./types"],
2024-09-10 09:50:11 +00:00
"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": {
2024-10-23 09:50:43 +00:00
"@/*": ["src/*", "src/.hexabot/*"]
2024-09-10 09:50:11 +00:00
}
2024-10-18 16:50:35 +00:00
},
"include": [
"src/**/*.ts",
2024-10-26 08:02:34 +00:00
"src/global.d.ts",
2024-10-26 07:23:02 +00:00
"types/**/*.d.ts",
"src/**/*.json",
"test/**/*.ts",
"src/.hexabot/**/*.ts",
"src/.hexabot/**/*.json"
]
2024-09-10 09:50:11 +00:00
}