funquail/front/tsconfig.json

20 lines
463 B
JSON
Raw Normal View History

2022-04-16 13:34:39 +02:00
{
2022-07-04 21:53:53 +00:00
"extends": "@vue/tsconfig/tsconfig.web.json",
2022-04-16 13:34:39 +02:00
"compilerOptions": {
"baseUrl": ".",
"sourceMap": true,
"allowJs": true,
2022-04-16 13:34:39 +02:00
"noUnusedLocals": true,
"typeRoots": ["node_modules/@types"],
2022-04-16 13:34:39 +02:00
"types": [
"vite/client",
"vue/ref-macros",
"vue-gettext/types",
"vite-plugin-pwa/client"
2022-04-16 13:34:39 +02:00
],
"paths": {
2022-04-23 09:37:43 +02:00
"~/*": ["src/*"]
2022-04-16 13:34:39 +02:00
}
},
2022-05-02 17:06:44 +02:00
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.vue", "vite.config.ts"]
2022-04-16 13:34:39 +02:00
}