Skip to content

Commit 2c3ee00

Browse files
committed
Manually exclude node_modules in tsconfig (performance in IDE was horrendous)
1 parent d4b90ca commit 2c3ee00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
/* Visit https://aka.ms/tsconfig.json to read more about this file */
33
"include": ["src/**/*.ts", "test/**/*.js", "test/**/*.ts"],
4-
"exclude": ["client"],
4+
"exclude": ["node_modules", "client"],
55
"compilerOptions": {
66
"resolveJsonModule": true,
77
"typeRoots": ["src/types", "node_modules/@types"],

0 commit comments

Comments
 (0)