ifms-pti/web/tsconfig.json

18 lines
464 B
JSON
Raw Normal View History

2021-02-09 12:47:34 +00:00
{
"include": ["./src/**/*.vue"],
2021-10-26 13:05:32 +00:00
2021-02-09 12:47:34 +00:00
"compilerOptions": {
2021-10-26 13:05:32 +00:00
"allowJs": true,
2021-02-09 12:47:34 +00:00
// this aligns with Vue's browser support
"target": "es5",
// this enables stricter inference for data properties on `this`
"strict": true,
// if using webpack 2+ or rollup, to leverage tree shaking:
"module": "es2015",
"moduleResolution": "node",
"types": ["vue-apollo"]
},
2022-12-08 18:48:36 +00:00
"exclude": ["node_modules"],
"vueCompilerOptions": { "target": 2.7 }
2021-02-09 12:47:34 +00:00
}