discord-jellyfin-bot/tsconfig.json

23 lines
583 B
JSON
Raw Normal View History

2022-12-15 23:57:55 +01:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
2022-12-16 13:48:39 +01:00
"noFallthroughCasesInSwitch": false,
"useDefineForClassFields": true
2022-12-15 23:57:55 +01:00
}
}