Skip to content

Commit

Permalink
chore: update .gitignore and tsconfig.json
Browse files Browse the repository at this point in the history
- I often find myself testing formatting on more than one test file, so now files like `test2.js` in the root are ignored.
- Coverage reports contain JS files. `tsc` should ignore them.
  • Loading branch information
thorn0 committed Apr 19, 2020
1 parent 1bfef81 commit 58905cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -3,7 +3,7 @@
/scripts/release/node_modules
*.log
/errors
/test.*
/test*.*
/.vscode
/dist
/website/node_modules
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Expand Up @@ -10,6 +10,7 @@
"strict": false
},
"exclude": [
"coverage/",
// [TBD] JavaScript sources *not* affected by src/language-*:
"src/main/ast-to-doc.js",
"src/main/core.js",
Expand Down

0 comments on commit 58905cd

Please sign in to comment.