funkwhale/front/tsconfig.json

22 wiersze
507 B
JSON
Czysty Zwykły widok Historia

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": ".",
"sourceMap": true,
2022-04-16 11:34:39 +00:00
"noUnusedLocals": true,
"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",
"vue-gettext/types",
"vite-plugin-pwa/client"
2022-04-16 11:34:39 +00:00
],
"paths": {
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-09-06 09:18:15 +00:00
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.vue", "vite.config.ts", "test/**/*.ts"]
2022-04-16 11:34:39 +00:00
}