fix new slug
This commit is contained in:
@ -1,17 +1,31 @@
|
|||||||
{
|
{
|
||||||
"extends": "./.svelte-kit/tsconfig.json",
|
"extends": "./.svelte-kit/tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"checkJs": true,
|
"checkJs": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"strict": true
|
"strict": true,
|
||||||
}
|
"paths": {
|
||||||
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
|
"$lib": [
|
||||||
//
|
"src/lib"
|
||||||
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
],
|
||||||
// from the referenced tsconfig.json - TypeScript does not merge them in
|
"$lib/*": [
|
||||||
|
"src/lib/*"
|
||||||
|
],
|
||||||
|
"$data": [
|
||||||
|
"src/data"
|
||||||
|
],
|
||||||
|
"$data/*": [
|
||||||
|
"src/data/*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
|
||||||
|
//
|
||||||
|
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
||||||
|
// from the referenced tsconfig.json - TypeScript does not merge them in
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user