Skip to content

Commit 22e5739

Browse files
committed
add tsconfig for dev tools
1 parent feb11ab commit 22e5739

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

tsconfig.dev.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// TODO This should eventually end up as the tsconfig for a dev-utils package
2+
{
3+
"extends": "./tsconfig.json",
4+
5+
"include": ["**/scripts/**/*.ts"],
6+
}

tsconfig.json

-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"extends": "./packages/typescript/tsconfig.json",
33

4-
// include scripts here because their TS config isn't package-specific, and they need to be included in a tsconfig
5-
// file to be linted
6-
"include": ["**/scripts/**/*.ts"],
7-
84
"compilerOptions": {
95
// TODO: turn these on once we switch to only generating types once, using `tsconfig.types.json`
106
// "declaration": false,

0 commit comments

Comments
 (0)