1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-06-18 21:49:20 +00:00
Files
libs/tsconfig.base.json
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"
]
}