Parcourir la source

update gitignore

Daniel Zlotin il y a 8 ans
Parent
révision
87a3abd6c1
2 fichiers modifiés avec 10 ajouts et 0 suppressions
  1. 1
    0
      .gitignore
  2. 9
    0
      jsconfig.json

+ 1
- 0
.gitignore Voir le fichier

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

+ 9
- 0
jsconfig.json Voir le fichier

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