1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 19:02:14 +00:00
libs/tsconfig.base.json
Florian Bouillon c56cd074ec Updated base TSConfig
Signed-off-by: Florian Bouillon <florian.bouillon@delta-wings.net>
2020-12-08 17:13:08 +01:00

27 lines
648 B
JSON

{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"declaration": true,
"declarationMap": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"target": "ES2017" // Follow NodeJS oldest supported LTS and compare with https://node.green
},
"exclude": [
"node_modules"
]
}