We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent addff71 commit 54994a6Copy full SHA for 54994a6
package.json
@@ -44,8 +44,7 @@
44
},
45
"files": [
46
"lib",
47
- "build",
48
- "!build/test",
+ "build/lib",
49
"CHANGELOG.md",
50
"LICENSE",
51
"npm-shrinkwrap.json",
tsconfig.json
@@ -2,11 +2,16 @@
2
"$schema": "https://json.schemastore.org/tsconfig",
3
"extends": "@appium/tsconfig/tsconfig.json",
4
"compilerOptions": {
5
- "strict": false, // TODO: make this flag true
6
"outDir": "build",
7
"types": ["node", "mocha"],
8
"checkJs": true
9
+ "ts-node": {
10
+ "transpileOnly": true,
11
+ "compilerOptions": {
12
+ "rootDir": "."
13
+ }
14
+ },
15
"include": [
16
17
"test"
0 commit comments