frequi_origin/tsconfig.json

22 lines
581 B
JSON
Raw Normal View History

2020-06-04 18:20:48 +00:00
{
"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",
2020-06-20 04:44:57 +00:00
"moduleResolution": "node",
2020-06-20 15:10:11 +00:00
"experimentalDecorators": true,
2020-06-20 04:44:57 +00:00
"noImplicitAny": false,
"allowJs": true,
2020-06-04 18:20:48 +00:00
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
]
}