Voicemeeter-remote-backend/tsconfig.json

25 lines
653 B
JSON
Raw Normal View History

2024-09-05 03:29:40 +02:00
{
2024-10-13 21:19:30 +02:00
"watchOptions": {"excludeDirectories": ["../library/logs"]},
2024-09-05 03:29:40 +02:00
"compilerOptions": {
2024-10-13 21:19:30 +02:00
// "strict": true,
2024-09-05 03:29:40 +02:00
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
2024-10-13 21:19:30 +02:00
"allowJs": true,
2024-09-05 03:29:40 +02:00
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
}
}