freeblox/tsconfig.json

17 lines
388 B
JSON
Raw Permalink Normal View History

2023-06-03 17:49:26 +00:00
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2023-06-10 09:14:06 +00:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2023-06-03 17:49:26 +00:00
/* Linting */
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "bundler"
}
}