lmlfc-bttv/tsconfig.json

19 lines
416 B
JSON
Raw Normal View History

2023-12-28 13:55:42 +00:00
{
"compilerOptions": {
"strict": true,
2023-12-30 14:51:19 +00:00
"module": "CommonJS",
2023-12-28 13:55:42 +00:00
"target": "es6",
"sourceMap": true,
2023-12-30 14:51:19 +00:00
// flags
"alwaysStrict": true,
"strictNullChecks": true,
2023-12-28 13:55:42 +00:00
"noEmitOnError": true,
2023-12-30 14:51:19 +00:00
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true
2023-12-28 13:55:42 +00:00
}
}