summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorPawel Zelawski <pawel@pzelawski.com>2026-05-23 10:07:34 +0200
committerPawel Zelawski <pawel@pzelawski.com>2026-05-23 10:07:34 +0200
commit63805760ab36357bbd8d67aa3c510e894785335f (patch)
tree9e1ceb7ecef3df9d85b42291875c2cddb668dff2 /tsconfig.json
parent3f3521cf5dad43dc537e6a56e469ccf73ae41927 (diff)
chore!: upgrade deps/tooling, fix postcss vulnerability, and require Node >=20.19.0HEADv3.0.0main
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json9
1 files changed, 5 insertions, 4 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 463f276..bba4f49 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -28,9 +28,10 @@
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
"noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */
/* Module Resolution Options */
- "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
- "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
- "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
+ "moduleResolution": "Bundler", /* Recommended module resolution strategy for Vite and modern bundlers. */
+ "types": [
+ "node"
+ ], /* Ensure Node.js built-in module types are available (e.g. crypto, buffer). */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
@@ -47,4 +48,4 @@
"esm": true,
"experimentalSpecifierResolution": "node"
}
-} \ No newline at end of file
+}