Skip to content

Commit

Permalink
fix: adjust tsconfigs to be compatible with typescript 5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Totto16 committed Jan 18, 2025
1 parent 988c4dd commit d06a2c7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/hello-world/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"module": "ESNext",
"moduleResolution": "Bundler"
},
"include": [],
"include": ["src"],
"files": ["src/extension.ts"]
}
3 changes: 2 additions & 1 deletion packages/gnome-shell/tsconfig.doc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
"inlineSourceMap": false,
"inlineSources": false,
"newLine": "LF"
}
},
"include": ["./src/**/*.d.ts"]
}
3 changes: 1 addition & 2 deletions packages/gnome-shell/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@
"moduleResolution": "Bundler",
"skipLibCheck": false
},
"include": ["./dist/**/*.d.ts"],
"files": ["./dist/index.d.ts"]
"include": ["./dist/**/*.d.ts"]
}
15 changes: 14 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,18 @@
"types": [],
"target": "ESNext",
"module": "ESNext"
}
},
"include": [],
"files": [],
"references": [
{
"path": "./packages/gnome-shell/tsconfig.json"
},
{
"path": "./packages/gnome-shell/tsconfig.doc.json"
},
{
"path": "./examples/hello-world/tsconfig.json"
}
]
}

0 comments on commit d06a2c7

Please sign in to comment.