Skip to content

Commit

Permalink
fix svelte2 path alias
Browse files Browse the repository at this point in the history
  • Loading branch information
mhkeller committed Feb 10, 2024
1 parent f169c2f commit 7e82db4
Show file tree
Hide file tree
Showing 3 changed files with 735 additions and 203 deletions.
25 changes: 7 additions & 18 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,18 @@
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"allowJs": true,
"checkJs": true,
"strict": true,
"paths": {
"$lib": [
"src/lib"
],
"$lib/*": [
"src/lib/*"
],
"layercake": ["src/lib/index.js"],
"layercake/*": ["src/lib/*"]
}
"strict": true
},
"include": [
"src/**/*.d.ts",
"src/**/*.js",
"src/**/*.ts",
"src/**/*.svelte"
"./src/**/*.d.ts",
"./src/**/*.js",
"./src/**/*.ts",
"./src/**/*.svelte"
],
"exclude": [
"src/_data/*",
"src/scripts/**/*"
"./src/_data/*",
"./src/scripts/**/*"
]
}
Loading

0 comments on commit 7e82db4

Please sign in to comment.