Files
create-react-component-library/tsconfig.cy.json
Alejandro Lembke Barrientos df367639b9 PR-733704: remove noEmit from tsconfig.cy.json
ts-loader requires TypeScript to emit output. noEmit:true was causing
"TypeScript emitted no output" errors in the Cypress webpack build.
2026-06-21 06:01:33 +00:00

13 lines
162 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"types": ["cypress", "node"]
},
"include": [
"src",
"cypress",
"src/@types"
]
}