Skip to content
This repository was archived by the owner on Jun 19, 2019. It is now read-only.

Commit e16334b

Browse files
committed
ci(build): update tsconfig include paths
1 parent 3348009 commit e16334b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

tsconfig.benchmark.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
"compilerOptions": {
44
"module": "commonjs"
55
},
6-
"include": "support/benchmark/*.ts"
6+
"include": [
7+
"./typings/benv.d.ts",
8+
"./support/benchmark/*.ts"
9+
]
710
}

tsconfig.main.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
},
55
"extends": "./tsconfig.json",
66
"files": [
7-
"src/index.ts"
7+
"./src/index.ts"
88
],
99
"include": [
10-
"typings/resolve-app-path.d.ts"
10+
"./typings/resolve-app-path.d.ts"
1111
]
1212
}

tsconfig.package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"./support/package.ts"
66
],
77
"include": [
8-
"typings/resolve-app-path.d.ts"
8+
"./typings/resolve-app-path.d.ts"
99
]
1010
}

tsconfig.tests.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
},
55
"extends": "./tsconfig.json",
66
"include": [
7-
"src/**/*.test.ts"
8-
],
9-
"include": [
10-
"typings/benv.d.ts"
7+
"./src/**/*.test.ts"
118
]
129
}

0 commit comments

Comments
 (0)