소스 검색

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
+}