Skip to content

Commit f84f8a7

Browse files
committed
fix: remove types from build
1 parent 5348a3a commit f84f8a7

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

tsconfig.build.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"strict": true,
99
"strictNullChecks": true,
1010
"esModuleInterop": true,
11-
"types": ["node", "jest"],
1211
"sourceMap": true,
1312
"skipLibCheck": true,
1413
"resolveJsonModule": true,

tsconfig.jest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"target": "esnext",
66
"isolatedModules": true,
77
"allowSyntheticDefaultImports": true,
8-
"types": ["jest", "jest-extended"]
8+
"types": ["node", "jest", "jest-extended"]
99
},
1010
"include": ["src/**/*.ts", "tests/**/*.ts"]
1111
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
44
"rootDir": ".",
5-
"types": ["jest"],
5+
"types": ["node", "jest"],
66
"skipLibCheck": true
77
},
88
"include": ["**/*"]

0 commit comments

Comments
 (0)