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