Skip to content

Commit

Permalink
another attempt to fix import aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemh committed Jun 22, 2024
1 parent 2cd2235 commit 21917b5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/plugins/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = (
webpackOptions: {
resolve: {
alias: {
'@': path.resolve(__dirname, '../../'),
'@': path.resolve(__dirname, '../..'),
},
},
},
Expand Down
6 changes: 6 additions & 0 deletions cypress/tsconfig.cypress.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"baseUrl": "../"
}
}
2 changes: 2 additions & 0 deletions sentry.edge.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// empty file kill warning log
// https://github.com/getsentry/sentry-javascript/issues/4206#issuecomment-2031839638
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"baseUrl": "./",
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
Expand Down

0 comments on commit 21917b5

Please sign in to comment.