diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index 61d20090..a34c1174 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,7 +8,14 @@ "resolveJsonModule": true, "skipLibCheck": true, "sourceMap": true, - "strict": true + "strict": true, + + // https://github.com/sveltejs/svelte/blob/master/packages/svelte/tsconfig.json + "stripInternal": true, + + "noImplicitThis": true, + "noUnusedLocals": true, + "noUnusedParameters": true } // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias |