diff options
| author | Fuwn <[email protected]> | 2026-02-03 06:05:31 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-03 19:34:51 -0800 |
| commit | a7d0ecfa4165963261a1e1d61fecb2733ce3355b (patch) | |
| tree | 3c4d2f0c11dc1982349f09a77b772423239b5f56 /packages/typescript-config/node.json | |
| parent | refactor(root): Extract shared TypeScript configuration (diff) | |
| download | archived-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.json | 13 |
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 + } +} |