FIx tsconfig

This commit is contained in:
Matthias 2020-11-10 17:54:52 +01:00
parent fe597833f7
commit 4aabb77799

View File

@ -1,11 +1,10 @@
{ {
"compilerOptions": { "compilerOptions": {
// this aligns with Vue's browser support "target": "es6",
"target": "es5", "module": "es6",
// this enables stricter inference for data properties on `this` // this enables stricter inference for data properties on `this`
"strict": true, "strict": true,
// if using webpack 2+ or rollup, to leverage tree shaking: // if using webpack 2+ or rollup, to leverage tree shaking:
"module": "es2020",
"moduleResolution": "node", "moduleResolution": "node",
"experimentalDecorators": true, "experimentalDecorators": true,
"noImplicitAny": false, "noImplicitAny": false,