diff options
author | Brendan Forster <brendan@github.com> | 2017-02-02 12:00:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-02 12:00:34 +0100 |
commit | 5b15028492947fc07b82e41fcccc3767850d3019 (patch) | |
tree | 77fb27bf80b691d7ad442b6c1896375bce76adc3 | |
parent | c3573924585f069b14efe7d695211bddff7c1c47 (diff) | |
parent | 240e551d83aed50173b887ede49dd7c105acd613 (diff) | |
download | gitignore-5b15028492947fc07b82e41fcccc3767850d3019.tar.gz gitignore-5b15028492947fc07b82e41fcccc3767850d3019.zip |
Merge pull request #2112 from bbodenmiller/patch-3
[Node/VisualStudio] ignore typings directory
-rw-r--r-- | Node.gitignore | 3 | ||||
-rw-r--r-- | VisualStudio.gitignore | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Node.gitignore b/Node.gitignore index 7682f9a4..38ac77e4 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -34,6 +34,9 @@ build/Release node_modules/ jspm_packages/ +# Typescript v1 declaration files +typings/ + # Optional npm cache directory .npm diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1d1e8372..8054980d 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -199,7 +199,6 @@ ClientBin/ *.jfm *.pfx *.publishsettings -node_modules/ orleans.codegen.cs # Since there are multiple workflows, uncomment next line to ignore bower_components @@ -234,6 +233,10 @@ FakesAssemblies/ # Node.js Tools for Visual Studio .ntvs_analysis.dat +node_modules/ + +# Typescript v1 declaration files +typings/ # Visual Studio 6 build log *.plg |