Skip to content

Commit 64f3c49

Browse files
committed
docs: update ts-loader config
should use transpileOnly, svelte-check should be used for type checking
1 parent 412dff0 commit 64f3c49

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,15 @@ Configure inside your `webpack.config.js`:
3636
// Also make sure your tsconfig.json includes `"useDefineForClassFields": true` or "target" is at least "ES2022"` in order to not downlevel class syntax
3737
{
3838
test: /\.svelte\.ts$/,
39-
use: [ "svelte-loader", "ts-loader"],
39+
use: [ "svelte-loader", { loader: "ts-loader", options: { transpileOnly: true } }],
4040
},
4141
// This is the config for other .ts files - the regex makes sure to not process .svelte.ts files twice
4242
{
4343
test: /(?<!\.svelte)\.ts$/,
4444
loader: "ts-loader",
45+
options: {
46+
transpileOnly: true, // you should use svelte-check for type checking
47+
}
4548
},
4649
{
4750
// Svelte 5+:

0 commit comments

Comments
 (0)