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
|
|
|
},
|
2024-10-22 10:01:44 +00:00
|
|
|
"include": [
|
2024-10-26 07:23:02 +00:00
|
|
|
"types/**/*.d.ts",
|
2024-10-26 09:36:47 +00:00
|
|
|
"src/global.d.ts",
|
|
|
|
"src/**/*.ts",
|
2024-10-22 10:01:44 +00:00
|
|
|
"src/**/*.json",
|
|
|
|
"test/**/*.ts",
|
|
|
|
"src/.hexabot/**/*.ts",
|
|
|
|
"src/.hexabot/**/*.json"
|
|
|
|
]
|
2024-09-10 09:50:11 +00:00
|
|
|
}
|