1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 10:52:11 +00:00

Updated base TSConfig

Signed-off-by: Florian Bouillon <florian.bouillon@delta-wings.net>
This commit is contained in:
Florian Bouillon 2020-12-08 17:13:08 +01:00
parent 0cc320c0af
commit c56cd074ec

View File

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