Skip to content

Commit c414854

Browse files
committed
fix: explicitly ignore the temp folder
The folder should be deleted immediately after the test runs, but on macOS it exists long enough for typedoc to pick it up and the complain about the files being deleted.
1 parent 53a37e7 commit c414854

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,10 @@
1717
"allowSyntheticDefaultImports": true,
1818
"resolveJsonModule": true
1919
},
20-
"exclude": ["node_modules", "dist"]
20+
"exclude": [
21+
"node_modules",
22+
"dist",
23+
// required for the typedoc related builds on macOS #2280
24+
"test/scripts/apidoc/temp"
25+
]
2126
}

0 commit comments

Comments
 (0)