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 f87e3047fc Fixed bug where null were considered as objects
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2020-11-23 02:27:16 +01:00

25 lines
580 B
JSON

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