Skip to content

Commit

Permalink
fix: add tsconfig override for cypress.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
kingyue737 committed Sep 26, 2023
1 parent abce3b5 commit b3424e0
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,17 @@
{
"path": "./tsconfig.vitest.json"
}
]
],
"ts-node": {
"compilerOptions": {
"module": "ESNext",
"lib": ["es2023"],
"target": "es2022",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "Node10",
"forceConsistentCasingInFileNames": true
}
}
}

0 comments on commit b3424e0

Please sign in to comment.