1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 02:42:13 +00:00

Edited tsconfig to be for the oldest LTS

This commit is contained in:
Florian Bouillon 2020-07-01 10:48:09 +02:00
parent aa2d969295
commit e57c934edb
2 changed files with 3 additions and 5 deletions

View File

@ -1,8 +1,6 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "dist"
},
"exclude": [

View File

@ -4,7 +4,7 @@
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"declaration": true,
"declarationMap": true,
"declarationMap": false,
"esModuleInterop": true,
"moduleResolution": "node",
"noImplicitReturns": true,
@ -15,7 +15,7 @@
"allowJs": true,
"sourceMap": false,
"strict": true,
"target": "es5",
"module": "commonjs",
"target": "ES2017", // Follow NodeJS oldest supported LTS
"module": "commonjs"
}
}