Browse Source

update gitignore

Daniel Zlotin 8 years ago
parent
commit
87a3abd6c1
2 changed files with 10 additions and 0 deletions
  1. 1
    0
      .gitignore
  2. 9
    0
      jsconfig.json

+ 1
- 0
.gitignore View File

@@ -1,4 +1,5 @@
1 1
 dist
2
+.vscode/
2 3
 
3 4
 ############
4 5
 # Node

+ 9
- 0
jsconfig.json View File

@@ -0,0 +1,9 @@
1
+{
2
+    "compilerOptions": {
3
+        "allowJs": true,
4
+        "allowSyntheticDefaultImports": true
5
+    },
6
+    "exclude": [
7
+        "node_modules"
8
+    ]
9
+}