Skip to content

Commit 94d0c59

Browse files
author
Philip May
committed
fixed bug in tsconfig.md with ./ prefix
1 parent f50fe08 commit 94d0c59

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/tsconfig.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ 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+
"!node_modules/**/*.ts"
6363
],
6464
"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"
65+
"globals.ts",
66+
"linter.ts",
67+
"main/atom/atomUtils.ts",
68+
"main/atom/autoCompleteProvider.ts",
69+
"worker/messages.ts",
70+
"worker/parent.ts"
7171
]
7272
}
7373
```

0 commit comments

Comments
 (0)