Skip to content

Commit 59f3da9

Browse files
committed
chore(build): update tsconfig
1 parent ba53d14 commit 59f3da9

File tree

1 file changed

+23
-10
lines changed

1 file changed

+23
-10
lines changed

tsconfig.json

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"module": "commonjs",
5-
"moduleResolution": "Node",
6-
"target": "ES2021",
4+
"module": "CommonJS",
5+
//"moduleResolution": "Node16",
6+
"target": "ES2022",
77
"outDir": "out",
8-
"lib": ["es6", "dom", "ES2018", "ES2019", "ES2020", "ES2021"],
8+
"lib": [
9+
"es6",
10+
"dom",
11+
"ES2018",
12+
"ES2019",
13+
"ES2020",
14+
"ES2021",
15+
"ES2022",
16+
],
917
"sourceMap": true,
1018
"rootDir": "vscode-client",
1119
"strict": true,
12-
"experimentalDecorators": true,
13-
"emitDecoratorMetadata": true,
14-
//"esModuleInterop": true,
15-
//"allowSyntheticDefaultImports": true,
20+
// "experimentalDecorators": true,
21+
// "emitDecoratorMetadata": true,
22+
// "esModuleInterop": true,
23+
// "allowSyntheticDefaultImports": true,
1624
"noImplicitAny": true,
1725
"noImplicitThis": true,
1826
"noUnusedLocals": true,
@@ -22,5 +30,10 @@
2230
"removeComments": true,
2331
"noImplicitReturns": true
2432
},
25-
"exclude": ["node_modules", ".vscode-test", "out", "htmlcov"]
26-
}
33+
"exclude": [
34+
"node_modules",
35+
".vscode-test",
36+
"out",
37+
"htmlcov"
38+
]
39+
}

0 commit comments

Comments
 (0)