Skip to content

Commit 4b8c06c

Browse files
committed
Merge pull request #831 from PhilipMay/fix-tsconfig.md
Fix tsconfig.md regarding ./ prefix
2 parents f50fe08 + edd101d commit 4b8c06c

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

docs/tsconfig.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,17 @@ A default `filesGlob` is available for you as a snippet : `fg`
5858
"noLib": false
5959
},
6060
"filesGlob": [
61-
"./**/*.ts",
62-
"!./node_modules/**/*.ts"
61+
"**/*.ts",
62+
"**/*.tsx",
63+
"!node_modules/**"
6364
],
6465
"files": [
65-
"./globals.ts",
66-
"./linter.ts",
67-
"./main/atom/atomUtils.ts",
68-
"./main/atom/autoCompleteProvider.ts",
69-
"./worker/messages.ts",
70-
"./worker/parent.ts"
66+
"globals.ts",
67+
"linter.ts",
68+
"main/atom/atomUtils.ts",
69+
"main/atom/autoCompleteProvider.ts",
70+
"worker/messages.ts",
71+
"worker/parent.ts"
7172
]
7273
}
7374
```

0 commit comments

Comments
 (0)