ifms-pti/web/tsconfig.json

15 lines
399 B
JSON
Raw Normal View History

2021-02-09 12:47:34 +00:00
{
"include": ["./src/**/*.vue"],
"compilerOptions": {
// 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"]
},
"exclude": ["node_modules"]
}