diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-06-24 08:53:58 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-06-24 09:13:08 +0200 |
| commit | bdba7f5c449c0ac77bbd2420c5bc086a7e369a91 (patch) | |
| tree | 0f4acd13a6a1c62f4e0b1b79a537b09c0470af2e /client/tsconfig.json | |
| parent | d104bd0671181376f0756ba8ae6a03880654c186 (diff) | |
Initial commit of client
Using svelte
Diffstat (limited to 'client/tsconfig.json')
| -rw-r--r-- | client/tsconfig.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json new file mode 100644 index 0000000..19034e0 --- /dev/null +++ b/client/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "moduleResolution": "bundler" + } + // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias + // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files + // + // 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 +} |
