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