Skip to content

Commit 7a10955

Browse files
committed
remove redundant node types in package-level config
1 parent a4f11ec commit 7a10955

File tree

14 files changed

+11
-14
lines changed

14 files changed

+11
-14
lines changed

packages/browser/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node", "mocha", "chai", "sinon", "jest"]
7+
"types": ["mocha", "chai", "sinon", "jest"]
88
}
99
}

packages/core/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node", "jest"]
7+
"types": ["jest"]
88
}
99
}

packages/gatsby/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node", "jest"]
7+
"types": ["jest"]
88
"esModuleInterop": true,
99
"jsx": "react"
1010
}

packages/integrations/tsconfig.build.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
"compilerOptions": {
55
"baseUrl": ".",
66
"outDir": "dist",
7-
"types": ["node"]
87
},
98
}

packages/integrations/tsconfig.esm.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
"compilerOptions": {
55
"baseUrl": ".",
66
"outDir": "esm",
7-
"types": ["node"]
87
},
98
}

packages/integrations/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node", "jest"]
7+
"types": ["jest"]
88
"esModuleInterop": true,
99
}
1010
}

packages/minimal/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node", "jest"]
7+
"types": ["jest"]
88
}
99
}

packages/nextjs/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node", "jest"]
7+
"types": ["jest"]
88
}
99
}

packages/node/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node", "jest"]
7+
"types": ["jest"]
88
}
99
}

packages/serverless/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",
6-
"types": ["node", "jest"]
6+
"types": ["jest"]
77
"target": "ES2018",
88
}
99
}

packages/tracing/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node", "jest"]
7+
"types": ["jest"]
88
}
99
}

packages/types/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node"]
87
}
98
}

packages/utils/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"exclude": ["dist"],
55
"compilerOptions": {
66
"rootDir": ".",
7-
"types": ["node", "jest"]
7+
"types": ["jest"]
88
}
99
}

packages/wasm/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"compilerOptions": {
66
"esModuleInterop": true,
77
"rootDir": ".",
8-
"types": ["node", "jest", "jest-environment-puppeteer"]
8+
"types": ["jest", "jest-environment-puppeteer"]
99
}
1010
}

0 commit comments

Comments
 (0)