mirror of
https://github.com/aleleba/create-react-component-library.git
synced 2026-07-04 14:21:12 -06:00
ts-loader requires TypeScript to emit output. noEmit:true was causing "TypeScript emitted no output" errors in the Cypress webpack build.
13 lines
162 B
JSON
13 lines
162 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"types": ["cypress", "node"]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"cypress",
|
|
"src/@types"
|
|
]
|
|
}
|