24 lines
574 B
JSON
24 lines
574 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"sourceMap": true,
|
|
"noUnusedLocals": true,
|
|
"experimentalDecorators": true,
|
|
"typeRoots": ["node_modules/@types"],
|
|
"types": [
|
|
"vitest/globals",
|
|
"vite/client",
|
|
"vue/ref-macros",
|
|
"vue-gettext/types",
|
|
"vite-plugin-pwa/client"
|
|
],
|
|
"paths": {
|
|
"#/*": ["src/worker/*"],
|
|
"?/*": ["test/*"],
|
|
"~/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.vue", "vite.config.ts", "test/**/*.ts"]
|
|
}
|