diff options
| author | Filip Wandzio <contact@philw.dev> | 2025-09-08 19:20:16 +0200 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2025-09-08 19:20:16 +0200 |
| commit | fcc7a9157c2c63e86bb6e93558a3a228ff8faa3f (patch) | |
| tree | 0c0fd22a4b8d1fb2c85e9815510f806c73fc839e /tsconfig.node.json | |
| parent | 74eea9c13a4bd9846fd82bbaae841322cf5650fc (diff) | |
| download | philw.dev-fcc7a9157c2c63e86bb6e93558a3a228ff8faa3f.tar.gz philw.dev-fcc7a9157c2c63e86bb6e93558a3a228ff8faa3f.zip | |
Rewrite whole project in svelte for better accessibility
Signed-off-by: Filip Wandzio <contact@philw.dev>
Diffstat (limited to '')
| -rw-r--r-- | tsconfig.node.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..f85a399 --- /dev/null +++ b/tsconfig.node.json | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | { | ||
| 2 | "compilerOptions": { | ||
| 3 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", | ||
| 4 | "target": "ES2023", | ||
| 5 | "lib": ["ES2023"], | ||
| 6 | "module": "ESNext", | ||
| 7 | "skipLibCheck": true, | ||
| 8 | |||
| 9 | /* Bundler mode */ | ||
| 10 | "moduleResolution": "bundler", | ||
| 11 | "allowImportingTsExtensions": true, | ||
| 12 | "verbatimModuleSyntax": true, | ||
| 13 | "moduleDetection": "force", | ||
| 14 | "noEmit": true, | ||
| 15 | |||
| 16 | /* Linting */ | ||
| 17 | "strict": true, | ||
| 18 | "noUnusedLocals": true, | ||
| 19 | "noUnusedParameters": true, | ||
| 20 | "erasableSyntaxOnly": true, | ||
| 21 | "noFallthroughCasesInSwitch": true, | ||
| 22 | "noUncheckedSideEffectImports": true | ||
| 23 | }, | ||
| 24 | "include": ["vite.config.ts"] | ||
| 25 | } | ||
