2020-07-22 00:35:23 +08:00
|
|
|
{
|
2022-02-15 14:45:50 +08:00
|
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
2021-08-24 13:36:48 +08:00
|
|
|
"compilerOptions": {
|
2021-12-10 18:18:16 +08:00
|
|
|
"allowJs": true,
|
2021-11-24 13:49:49 +08:00
|
|
|
"module": "ES6",
|
2021-12-10 18:18:16 +08:00
|
|
|
"target": "ES2018",
|
2021-08-24 13:36:48 +08:00
|
|
|
"noImplicitAny": false,
|
2021-11-24 13:49:49 +08:00
|
|
|
"declaration": true,
|
2021-08-24 13:36:48 +08:00
|
|
|
"sourceMap": true,
|
2022-02-15 14:45:50 +08:00
|
|
|
"lib": ["ES2018", "DOM", "DOM.Iterable"],
|
2021-08-24 13:36:48 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-02-15 14:45:50 +08:00
|
|
|
"types": ["unplugin-vue-define-options"]
|
2021-08-24 13:36:48 +08:00
|
|
|
},
|
2022-02-15 14:45:50 +08:00
|
|
|
"references": [{ "path": "./tsconfig.jest.json" }],
|
|
|
|
"include": ["packages", "typings"],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/dist",
|
|
|
|
"**/__tests__",
|
|
|
|
"**/*.test.*",
|
|
|
|
"**/*.spec.*"
|
|
|
|
]
|
2020-07-22 00:35:23 +08:00
|
|
|
}
|