Skip to content

Commit b976dfc

Browse files
committed
Fixes not being able to build on fresh install
the tsc command tries to build everything in dist and example folder, which is not what we want.
1 parent 2d47a19 commit b976dfc

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

package-lock.json

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"declaration": true,
66
"outDir": "./dist",
77
"strict": false
8-
}
8+
},
9+
"exclude": ["example/*", "dist/*"]
910
}
10-
11-

0 commit comments

Comments
 (0)