chore: frontend tsconfig fix

This commit is contained in:
Ben Allfree 2023-09-10 15:58:44 -07:00
parent 5f387095d3
commit 86f676ce12

View File

@ -11,11 +11,11 @@
"sourceMap": true, "sourceMap": true,
"strict": true, "strict": true,
"paths": { "paths": {
"$util/*": ["src/util/*"], "$util/*": ["./src/util/*"],
"$components/*": ["src/components/*"], "$components/*": ["./src/components/*"],
"$src/*": ["src/*"] "$src/*": ["./src/*"]
}, },
"types": ["src/global.d.ts"] "types": ["./src/global.d.ts"]
} }
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
// //