2022-04-16 11:34:39 +00:00
|
|
|
{
|
2022-07-04 21:53:53 +00:00
|
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
2022-04-16 11:34:39 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
2022-05-01 19:57:22 +00:00
|
|
|
"sourceMap": true,
|
2022-04-16 11:34:39 +00:00
|
|
|
"noUnusedLocals": true,
|
2022-10-18 21:48:47 +00:00
|
|
|
"experimentalDecorators": true,
|
2022-05-01 19:57:22 +00:00
|
|
|
"typeRoots": ["node_modules/@types"],
|
2022-04-16 11:34:39 +00:00
|
|
|
"types": [
|
2022-08-31 22:36:40 +00:00
|
|
|
"vitest/globals",
|
2022-04-16 11:34:39 +00:00
|
|
|
"vite/client",
|
|
|
|
"vue/ref-macros",
|
2023-09-01 12:09:58 +00:00
|
|
|
"vite-plugin-pwa/client",
|
|
|
|
"unplugin-vue-macros/macros-global"
|
2022-04-16 11:34:39 +00:00
|
|
|
],
|
|
|
|
"paths": {
|
2022-10-20 14:46:58 +00:00
|
|
|
"#/*": ["src/worker/*"],
|
2022-09-06 09:18:15 +00:00
|
|
|
"?/*": ["test/*"],
|
2022-04-23 07:37:43 +00:00
|
|
|
"~/*": ["src/*"]
|
2022-04-16 11:34:39 +00:00
|
|
|
}
|
|
|
|
},
|
2022-11-23 21:42:32 +00:00
|
|
|
"include": [
|
|
|
|
"src/**/*.d.ts",
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"vite.config.ts",
|
|
|
|
"test/**/*.ts"
|
2023-09-01 12:09:58 +00:00
|
|
|
],
|
|
|
|
"vueCompilerOptions": {
|
|
|
|
"plugins": [
|
|
|
|
"@vue-macros/volar/define-options",
|
|
|
|
"@vue-macros/volar/define-models",
|
|
|
|
"@vue-macros/volar/define-props",
|
|
|
|
"@vue-macros/volar/define-props-refs",
|
|
|
|
"@vue-macros/volar/short-vmodel",
|
|
|
|
"@vue-macros/volar/define-slots",
|
|
|
|
"@vue-macros/volar/export-props",
|
|
|
|
"@vue-macros/volar/jsx-directive"
|
|
|
|
]
|
|
|
|
}
|
2022-04-16 11:34:39 +00:00
|
|
|
}
|