Skip to content

Commit dcb19b6

Browse files
Copilothotlong
andauthored
fix: add ignoreDeprecations to docs and studio app tsconfigs
Both apps/docs and apps/studio use baseUrl in their tsconfig.json but don't extend the root tsconfig, so they need ignoreDeprecations: "6.0" added directly to suppress the TS5101 baseUrl deprecation error. Agent-Logs-Url: https://github.com/objectstack-ai/spec/sessions/5434651c-ffcc-4a00-9f15-7b715d4cb4ed Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 3d6e12a commit dcb19b6

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

apps/docs/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4+
"ignoreDeprecations": "6.0",
45
"target": "ESNext",
56
"lib": [
67
"dom",

apps/studio/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"noUnusedParameters": true,
2121
"noFallthroughCasesInSwitch": true,
2222
"baseUrl": ".",
23+
"ignoreDeprecations": "6.0",
2324
"paths": {
2425
"@/*": ["./src/*"]
2526
}

0 commit comments

Comments
 (0)