Skip to content

Instantly share code, notes, and snippets.

@alesvaupotic
Created April 28, 2021 08:06
Show Gist options
  • Save alesvaupotic/2744c80b4196920376fc2bd954782ff3 to your computer and use it in GitHub Desktop.
Save alesvaupotic/2744c80b4196920376fc2bd954782ff3 to your computer and use it in GitHub Desktop.
tsconfig for vite aliases
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"$components/*": ["./src/components/*"],
"$/*": ["./src/*"]
}
},
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment