funkwhale/front/tsconfig.json

23 wiersze
535 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.web.json",
"compilerOptions": {
"baseUrl": ".",
"sourceMap": true,
"allowJs": true,
"noUnusedLocals": true,
"typeRoots": ["node_modules/@types"],
"types": [
"vitest/globals",
"vite/client",
"vue/ref-macros",
"vue-gettext/types",
"vite-plugin-pwa/client"
],
"paths": {
"?/*": ["tests/unit/*"],
"~/*": ["src/*"]
}
},
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.vue", "vite.config.ts", "tests/**/*.ts"]
}