build: target latest ES versions supported in Nodejs 14

This commit is contained in:
Julian Tölle 2020-05-31 23:25:50 +02:00
parent 61431694cb
commit e2b927fca4

View file

@ -5,15 +5,13 @@
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2017",
"target": "ES2020",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"paths": {}
"paths": {},
"lib": ["ES2020"]
},
"exclude": [
"node_modules",
"dist"
]
}
"exclude": ["node_modules", "dist"]
}