We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9a6e3 commit 0bb9784Copy full SHA for 0bb9784
package/package.json
@@ -82,7 +82,8 @@
82
[
83
"typescript",
84
{
85
- "tsc": "../node_modules/.bin/tsc"
+ "tsc": "../node_modules/.bin/tsc",
86
+ "project": "tsconfig.build.json"
87
}
88
]
89
package/tsconfig.build.json
@@ -0,0 +1,7 @@
1
+{
2
+ "extends": "../tsconfig.json",
3
+ "include": ["src"],
4
+ "compilerOptions": {
5
+ "rootDir": "src"
6
+ }
7
+}
package/tsconfig.json
@@ -2,6 +2,7 @@
"extends": "../tsconfig.json",
"include": ["src"],
"compilerOptions": {
- "rootDir": "src"
+ "rootDir": "src",
+ "outDir": "lib"
8
0 commit comments