ソースを参照

update gitignore

Daniel Zlotin 8 年 前
コミット
87a3abd6c1
共有2 個のファイルを変更した10 個の追加0 個の削除を含む
  1. 1
    0
      .gitignore
  2. 9
    0
      jsconfig.json

+ 1
- 0
.gitignore ファイルの表示

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

+ 9
- 0
jsconfig.json ファイルの表示

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