{
"compilerOptions": {
/* Language and Environment */
"target": "es2022",
"module": "commonjs",
/* Modules */
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
"baseUrl": "./",
"rootDir": "./",
/* Emit */
"outDir": "./dist/" /* Specify an output folder for all emitted files. */,
"paths": {
"@src/*": ["./src/*"]
},
/* Interop Constraints */
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
/* Type Checking */
"strict": true /* Enable all strict type-checking options. */,
/* Completeness */
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"resolveJsonModule": true,
"strictPropertyInitialization": false,
/* These are new rules we are checking */
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["./typings", "./node_modules/@types"],
"sourceMap": true,
"incremental": true,
"strictNullChecks": true,
"noImplicitAny": false,
"strictBindCallApply": true,
"noFallthroughCasesInSwitch": true
}
}