Skip to content

Commit

Permalink
Add more files to TypeScript excludes (#691)
Browse files Browse the repository at this point in the history
VSCode said that there are too many files in the project and asked to add more files to the exclude. This makes the error go away.
  • Loading branch information
danoc authored Jun 17, 2020
1 parent e4f1b1f commit cb3be83
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,11 @@
"esModuleInterop": true
},
"include": ["packages/**/*", "typings/**/*", "www/**/*"],
"exclude": ["**/node_modules/**/*", "**/dist/**/*"]
"exclude": [
"**/node_modules/**/*",
"**/dist/**/*",
"www/.cache/**",
"www/public/**",
"packages/*/.cache/**"
]
}

0 comments on commit cb3be83

Please sign in to comment.