Skip to content

Commit f09d3a7

Browse files
committed
Fixing missing typings in various projects.
1 parent fd7ab59 commit f09d3a7

11 files changed

Lines changed: 62 additions & 10 deletions

File tree

apps/api-documenter/tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json"
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json",
3+
"compilerOptions": {
4+
"types": [
5+
"jest"
6+
]
7+
}
38
}

apps/rush-lib/tsconfig.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json",
3+
"compilerOptions": {
4+
"types": [
5+
"jest"
6+
]
7+
},
38
"include": [
49
"./typings/tsd.d.ts",
510
"./src/**/*.ts",

apps/rush/tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json"
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json",
3+
"compilerOptions": {
4+
"types": [
5+
"mocha"
6+
]
7+
}
38
}
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-web.json"
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-web.json",
3+
"compilerOptions": {
4+
"types": [
5+
"jest"
6+
]
7+
}
38
}
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json"
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json",
3+
"compilerOptions": {
4+
"types": [
5+
"mocha"
6+
]
7+
}
38
}
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-web.json",
33
"compilerOptions": {
4-
"module": "commonjs"
4+
"module": "commonjs",
5+
"types": [
6+
"webpack-env"
7+
]
58
}
69
}
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json"
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json",
3+
"compilerOptions": {
4+
"types": [
5+
"mocha"
6+
]
7+
}
38
}

libraries/rushell/tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json"
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json",
3+
"compilerOptions": {
4+
"types": [
5+
"jest"
6+
]
7+
}
38
}
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json",
33
"compilerOptions": {
4-
"strictNullChecks": false
4+
"strictNullChecks": false,
5+
"types": [
6+
"node"
7+
]
58
}
69
}
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
{
2-
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json"
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler/includes/tsconfig-node.json",
3+
"compilerOptions": {
4+
"types": [
5+
"node",
6+
"mocha"
7+
]
8+
}
39
}

0 commit comments

Comments
 (0)