Skip to content

Commit 0bb9784

Browse files
committed
chore: TS outDir and builder bob config
1 parent ba9a6e3 commit 0bb9784

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

package/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282
[
8383
"typescript",
8484
{
85-
"tsc": "../node_modules/.bin/tsc"
85+
"tsc": "../node_modules/.bin/tsc",
86+
"project": "tsconfig.build.json"
8687
}
8788
]
8889
]

package/tsconfig.build.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "../tsconfig.json",
3+
"include": ["src"],
4+
"compilerOptions": {
5+
"rootDir": "src"
6+
}
7+
}

package/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../tsconfig.json",
33
"include": ["src"],
44
"compilerOptions": {
5-
"rootDir": "src"
5+
"rootDir": "src",
6+
"outDir": "lib"
67
}
78
}

0 commit comments

Comments
 (0)