Skip to content

Commit 6de5a17

Browse files
authored
Merge pull request #351 from mizdra/fix-build-config
Fix missing dist directory
2 parents ef685ad + 63c2c84 commit 6de5a17

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tsconfig.build.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{
22
"extends": "./tsconfig.json",
33
"include": ["src/**/*"],
4-
"exclude": ["src/**/*.test.ts", "src/test-util/**", "!src/**/__snapshots__"],
4+
"exclude": ["src/**/*.test.ts", "src/test-util", "src/**/__snapshots__"],
55
"compilerOptions": {
66
"noEmit": false,
77
"outDir": "./dist",
88
"rootDir": "src", // To avoid inadvertently changing the directory structure under dist/.
9+
"incremental": false,
10+
"tsBuildInfoFile": null,
911
"sourceMap": true,
1012
"declaration": true,
1113
"declarationMap": true

0 commit comments

Comments
 (0)