Skip to content

Commit 54994a6

Browse files
fix build
1 parent addff71 commit 54994a6

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@
4444
},
4545
"files": [
4646
"lib",
47-
"build",
48-
"!build/test",
47+
"build/lib",
4948
"CHANGELOG.md",
5049
"LICENSE",
5150
"npm-shrinkwrap.json",

tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"extends": "@appium/tsconfig/tsconfig.json",
44
"compilerOptions": {
5-
"strict": false, // TODO: make this flag true
65
"outDir": "build",
76
"types": ["node", "mocha"],
87
"checkJs": true
98
},
9+
"ts-node": {
10+
"transpileOnly": true,
11+
"compilerOptions": {
12+
"rootDir": "."
13+
}
14+
},
1015
"include": [
1116
"lib",
1217
"test"

0 commit comments

Comments
 (0)