Skip to content

Commit

Permalink
build(sveltekit): change the configuration for scripts
Browse files Browse the repository at this point in the history
This was based on the [repository of my personal website].

[repository of my personal website]: https://github.com/KennethTrecy/kennethtrecy.pages.dev/
  • Loading branch information
KennethTrecy committed Jul 9, 2023
1 parent 380543f commit 782fc79
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"module": "ES2015",
"moduleResolution": "Node",
"paths": {
"@/*": [ "src/*" ]
}
"moduleResolution": "node",
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
}
}

0 comments on commit 782fc79

Please sign in to comment.