Skip to content

Commit 9b3b741

Browse files
committed
fix: adjust tsconfigs to be compatible with typescript 5.7
1 parent 0b958ce commit 9b3b741

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

examples/hello-world/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"module": "ESNext",
88
"moduleResolution": "Bundler"
99
},
10-
"include": [],
10+
"include": ["src"],
1111
"files": ["src/extension.ts"]
1212
}

packages/gnome-shell/tsconfig.doc.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@
1212
"inlineSourceMap": false,
1313
"inlineSources": false,
1414
"newLine": "LF"
15-
}
15+
},
16+
"include": ["./src/**/*.d.ts"],
17+
"files": ["./src/**/*.d.ts"]
1618
}

tsconfig.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,18 @@
44
"types": [],
55
"target": "ESNext",
66
"module": "ESNext"
7-
}
7+
},
8+
"include": [],
9+
"files": [],
10+
"references": [
11+
{
12+
"path": "./packages/gnome-shell/tsconfig.json"
13+
},
14+
{
15+
"path": "./packages/gnome-shell/tsconfig.doc.json"
16+
},
17+
{
18+
"path": "./examples/hello-world/tsconfig.json"
19+
}
20+
]
821
}

0 commit comments

Comments
 (0)