aboutsummaryrefslogtreecommitdiff
path: root/packages/typescript-config/node.json
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-03 06:05:31 -0800
committerFuwn <[email protected]>2026-02-03 19:34:51 -0800
commita7d0ecfa4165963261a1e1d61fecb2733ce3355b (patch)
tree3c4d2f0c11dc1982349f09a77b772423239b5f56 /packages/typescript-config/node.json
parentrefactor(root): Extract shared TypeScript configuration (diff)
downloadarchived-imemio-a7d0ecfa4165963261a1e1d61fecb2733ce3355b.tar.xz
archived-imemio-a7d0ecfa4165963261a1e1d61fecb2733ce3355b.zip
refactor(root): Move shared TypeScript configs to dedicated package
Diffstat (limited to 'packages/typescript-config/node.json')
-rw-r--r--packages/typescript-config/node.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/typescript-config/node.json b/packages/typescript-config/node.json
new file mode 100644
index 0000000..ceb9ad3
--- /dev/null
+++ b/packages/typescript-config/node.json
@@ -0,0 +1,13 @@
+{
+ "extends": "./base.json",
+ "compilerOptions": {
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
+ "lib": ["ES2022"],
+ "declaration": true,
+ "declarationMap": true,
+ "sourceMap": true,
+ "noUncheckedIndexedAccess": true,
+ "noEmitOnError": true
+ }
+}