funkwhale/front/tsconfig.json

21 wiersze
463 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,
"allowJs": true,
2022-04-16 11:34:39 +00:00
"noUnusedLocals": true,
"typeRoots": ["node_modules/@types"],
2022-04-16 11:34:39 +00:00
"types": [
"vite/client",
"vue/ref-macros",
"vue-gettext/types",
"vite-plugin-pwa/client"
2022-04-16 11:34:39 +00:00
],
"paths": {
2022-04-23 07:37:43 +00:00
"~/*": ["src/*"]
2022-04-16 11:34:39 +00:00
}
},
2022-05-02 15:06:44 +00:00
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.vue", "vite.config.ts"]
2022-04-16 11:34:39 +00:00
}