Skip to content

Commit 3b6317e

Browse files
committed
fix: make package tsconfig self-contained
Removed extends from root tsconfig to avoid module resolution conflicts. The package now has its own complete TypeScript configuration.
1 parent 89a6826 commit 3b6317e

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

packages/vscode-extension-ci/tsconfig.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
{
2-
"extends": "../../tsconfig.json",
32
"compilerOptions": {
4-
"rootDir": "./src",
5-
"outDir": "./dist",
6-
"module": "ES2022",
73
"target": "ES2022",
4+
"module": "ES2022",
5+
"lib": ["ES2022"],
86
"moduleResolution": "bundler",
9-
"composite": true,
7+
"rootDir": "./src",
8+
"outDir": "./dist",
9+
"strict": true,
10+
"esModuleInterop": true,
11+
"skipLibCheck": true,
12+
"forceConsistentCasingInFileNames": true,
1013
"declaration": true,
1114
"declarationMap": true,
12-
"esModuleInterop": true,
15+
"sourceMap": true,
16+
"resolveJsonModule": true,
1317
"allowSyntheticDefaultImports": true
1418
},
1519
"include": ["src/**/*"],

0 commit comments

Comments
 (0)