veui
Version:
Baidu Enterprise UI for Vue.js.
21 lines (20 loc) • 480 B
JSON
{
"compilerOptions": {
"outDir": "./dist",
// 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",
"allowJs": true,
"paths": {
"veui": ["./types/index.d.ts"]
},
"jsx": "preserve"
},
"vueCompilerOptions": {
"target": 2
}
}