Skip to content

Commit 3db8ac4

Browse files
committed
Remove the stories from the main build
the types were being generated unnecessarily
1 parent 4d9fc79 commit 3db8ac4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
// see https://www.typescriptlang.org/tsconfig to better understand tsconfigs
33
"include": ["src", "types"],
4+
"exclude": ["**/*.stories.tsx"],
45
"compilerOptions": {
56
"module": "esnext",
67
"lib": ["dom", "esnext"],
@@ -30,6 +31,6 @@
3031
// error out if import and file system have a casing mismatch. Recommended by TS
3132
"forceConsistentCasingInFileNames": true,
3233
// `tsdx build` ignores this option, but it is commonly used when type-checking separately with `tsc`
33-
"noEmit": true,
34+
"noEmit": true
3435
}
3536
}

0 commit comments

Comments
 (0)