Skip to content

Commit

Permalink
refactor: Update tsconfig to include core module paths and references
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBrunton committed Jan 2, 2025
1 parent 0ed9b7e commit c0667b2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/workspace-fusion/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": false,
"moduleResolution": "Bundler",
"module": "ESNext"
"module": "ESNext",
"paths": {
"core": ["../core/src"]
}
},
"include": ["src"]
"include": ["src"],
"references": [{ "path": "../core" }]
}

0 comments on commit c0667b2

Please sign in to comment.