mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-22 10:52:11 +00:00
25 lines
544 B
JSON
25 lines
544 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
|
|
"module": "commonjs"
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|