ifms-pti/web/tsconfig.json
Douglas Barone ed5a8c04bd IDE config
2021-02-09 08:47:34 -04:00

15 lines
399 B
JSON

{
"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"]
}