ifms-pti/web/tsconfig.json
2021-10-26 09:05:32 -04:00

17 lines
421 B
JSON

{
"include": ["./src/**/*.vue"],
"compilerOptions": {
"allowJs": true,
// 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"]
}