mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-22 19:02:14 +00:00
25 lines
580 B
JSON
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"
|
|
]
|
|
}
|