Skip to content

Commit 515003a

Browse files
author
Kartik Raj
committed
Have same browser config as extension config
1 parent dd64f24 commit 515003a

File tree

1 file changed

+23
-6
lines changed

1 file changed

+23
-6
lines changed

tsconfig.browser.json

+23-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
11
{
2-
"extends": "./tsconfig.json",
3-
"include": [
4-
"./src/client/browser",
5-
"./types/vscode.proposed.d.ts",
6-
"./src/client/common"
7-
]
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"module": "commonjs",
5+
"target": "es6",
6+
"outDir": "out",
7+
"lib": [
8+
"es6",
9+
"es2018",
10+
"ES2019",
11+
"ES2020",
12+
],
13+
"sourceMap": true,
14+
"rootDir": "src",
15+
"experimentalDecorators": true,
16+
"allowSyntheticDefaultImports": true,
17+
"noImplicitThis": false
18+
},
19+
"exclude": [
20+
"node_modules",
21+
".vscode-test",
22+
".vscode test",
23+
"build"
24+
]
825
}

0 commit comments

Comments
 (0)