refactor: fonts are now bundled with packages (#3227)

This commit is contained in:
Liyas Thomas
2023-08-05 23:42:31 +05:30
committed by GitHub
parent 0e70c28324
commit 5c8ebaff3e
18 changed files with 240 additions and 115 deletions

View File

@@ -15,17 +15,18 @@
"skipLibCheck": true,
"noUnusedLocals": true,
"paths": {
"~/*": [ "./src/*" ],
"@composables/*": [ "./src/composables/*" ],
"@components/*": [ "./src/components/*" ],
"@helpers/*": [ "./src/helpers/*" ],
"@modules/*": [ "./src/modules/*" ],
"@workers/*": [ "./src/workers/*" ],
"@functional/*": [ "./src/helpers/functional/*" ]
"~/*": ["./src/*"],
"@composables/*": ["./src/composables/*"],
"@components/*": ["./src/components/*"],
"@helpers/*": ["./src/helpers/*"],
"@modules/*": ["./src/modules/*"],
"@workers/*": ["./src/workers/*"],
"@functional/*": ["./src/helpers/functional/*"]
},
"types": [
"vite/client",
"unplugin-icons/types/vue",
"unplugin-fonts/client",
"vite-plugin-pages/client",
"vite-plugin-vue-layouts/client",
"vite-plugin-pwa/client"