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,
|
2022-04-19 11:23:21 +08:00
|
|
|
"module": "ESNext",
|
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-21 14:28:22 +08:00
|
|
|
"references": [
|
|
|
|
{ "path": "./tsconfig.vite-config.json" },
|
|
|
|
{ "path": "./tsconfig.vitest.json" }
|
|
|
|
],
|
2022-02-15 14:45:50 +08:00
|
|
|
"include": ["packages", "typings"],
|
2022-02-21 14:28:22 +08:00
|
|
|
"exclude": ["node_modules", "**/dist", "**/__tests__/**/*"]
|
2020-07-22 00:35:23 +08:00
|
|
|
}
|