We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a63f89 commit b6ceb86Copy full SHA for b6ceb86
src/typescript.js
@@ -2,6 +2,8 @@
2
export function setupTypeScript() {
3
// use atom-typescript for javascript
4
atom.config.set("atom-typescript.allowJS", true)
5
+ // disable check files which slows down Atom
6
+ atom.config.set("atom-typescript.checkAllFilesOnSave", false)
7
// activate atom-typescript
8
atom.commands.dispatch(atom.workspace.getElement(), "typescript:activate")
9
}
0 commit comments