summaryrefslogtreecommitdiff
path: root/.ci/tsconfig.json
diff options
context:
space:
mode:
authorElizabeth Alexander Hunt <me@liz.coffee>2026-07-23 10:01:16 -0700
committerElizabeth Alexander Hunt <me@liz.coffee>2026-07-23 10:02:47 -0700
commit8ee2b45b5b889924e91f25f8072dbd584680315e (patch)
tree70ecacc0cf04ca1a0987dea3dab0fd7b874ff75f /.ci/tsconfig.json
parent8e09d75db41961ed72b0d12dcb5337049dda77ac (diff)
downloadlizdotcoffee-8ee2b45b5b889924e91f25f8072dbd584680315e.tar.gz
lizdotcoffee-8ee2b45b5b889924e91f25f8072dbd584680315e.zip
Add commit hash
Diffstat (limited to '.ci/tsconfig.json')
-rw-r--r--.ci/tsconfig.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/tsconfig.json b/.ci/tsconfig.json
index 7cfeadc..6e44f85 100644
--- a/.ci/tsconfig.json
+++ b/.ci/tsconfig.json
@@ -3,7 +3,6 @@
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022"],
- "moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./",
"composite": true,
@@ -21,7 +20,8 @@
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true
+ "noFallthroughCasesInSwitch": true,
+ "types": ["node"]
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]