mirror of
https://github.com/dzeiocom/libs.git
synced 2025-05-19 23:59:59 +00:00
37 lines
867 B
JSON
37 lines
867 B
JSON
{
|
|
"compilerOptions": {
|
|
// Compilation
|
|
"target": "ES2020", // Follow NodeJS oldest supported LTS and compare with https://node.green
|
|
"module": "commonjs",
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"pretty": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
// Type Checking
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"alwaysStrict": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|