Skip to content

Commit 0f58040

Browse files
committed
Removes baseUrl to support TypeScript 6+
1 parent 1789fda commit 0f58040

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

src/webviews/apps/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"lib": ["dom", "dom.iterable", "es2023"],
66
"outDir": "../../",
77
"paths": {
8-
"@env/*": ["src/env/browser/*"]
8+
"@env/*": ["../../env/browser/*"]
99
},
1010
"useDefineForClassFields": false // Needed for lit decorators https://github.com/lit/lit/issues/3278 https://lit.dev/docs/tools/publishing/#publishing-modern-javascript
1111
},

tsconfig.base.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"allowUnreachableCode": false,
4-
"baseUrl": ".",
54
"esModuleInterop": true,
65
"experimentalDecorators": true,
76
"forceConsistentCasingInFileNames": true,

tsconfig.browser.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"compilerOptions": {
44
"lib": ["dom", "dom.iterable", "es2023"],
55
"paths": {
6-
"@env/*": ["src/env/browser/*"],
7-
"path": ["node_modules/path-browserify"]
6+
"@env/*": ["./src/env/browser/*"],
7+
"path": ["./node_modules/path-browserify"]
88
},
99
"tsBuildInfoFile": "tsconfig.browser.tsbuildinfo"
1010
},

tsconfig.node.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "./tsconfig.base.json",
33
"compilerOptions": {
44
"paths": {
5-
"@env/*": ["src/env/node/*"]
5+
"@env/*": ["./src/env/node/*"]
66
},
77
"tsBuildInfoFile": "tsconfig.node.tsbuildinfo"
88
},

tsconfig.test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"incremental": false,
55
"outDir": "out/tests",
66
"paths": {
7-
"@env/*": ["src/env/node/*"]
7+
"@env/*": ["./src/env/node/*"]
88
}
99
},
1010
"include": ["src/**/*"],

0 commit comments

Comments
 (0)