diff options
Diffstat (limited to '.ci/tsconfig.json')
| -rw-r--r-- | .ci/tsconfig.json | 4 |
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"] |
