1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-06-17 21:19:20 +00:00

First @dzeio/config version

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-07-10 18:50:50 +02:00
parent 418c36efda
commit 588caedd84
14 changed files with 5809 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{
"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"
]
}