Cannot find module '../../../material-ui-styles/src' or its corresponding type declarations.
See original GitHub issue- The issue is present in the latest release.
- I have searched the issues of this repository and believe that this is not a duplicate.
Current Behavior 😯
The typings of components inside the lab are referencing import("../../../material-ui-styles/src")
. The components inside the core are fine, so likely not something with our setup.
Expected Behavior 🤔
The typings of components in the lab should be referencing @material-ui/styles
.
Steps to Reproduce 🕹
{
"compilerOptions": {
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"baseUrl": "src",
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"pretty": true,
"sourceMap": true,
"strict": true,
"target": "es2020",
"resolveJsonModule": true,
"rootDir": "src",
"outDir": "build",
"incremental": true
},
"include": ["src/**/*"],
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"]
}
Steps:
- Add a
DatePicker
form the lab - Build your project using
tsc
- Get error
Cannot find module '../../../material-ui/src' or its corresponding type declarations.
Context 🔦
Your Environment 🌎
`npx @material-ui/envinfo`
System:
OS: macOS 11.1
Binaries:
Node: 14.15.1 - ~/.nvm/versions/node/v14.15.1/bin/node
Yarn: 1.22.10 - /usr/local/bin/yarn
npm: 6.14.8 - ~/.nvm/versions/node/v14.15.1/bin/npm
Browsers:
Chrome: 87.0.4280.88
Edge: 87.0.664.66
Firefox: Not Found
Safari: 14.0.2
npmPackages:
@emotion/react: ^11.1.4 => 11.1.4
@emotion/styled: ^11.0.0 => 11.0.0
@material-ui/core: ^5.0.0-alpha.20 => 5.0.0-alpha.20
@material-ui/icons: ^5.0.0-alpha.20 => 5.0.0-alpha.20
@material-ui/lab: ^5.0.0-alpha.20 => 5.0.0-alpha.20
@material-ui/styled-engine: 5.0.0-alpha.20
@material-ui/styles: 5.0.0-alpha.20
@material-ui/system: 5.0.0-alpha.20
@material-ui/types: 5.1.2
@material-ui/unstyled: 5.0.0-alpha.20
@material-ui/utils: 5.0.0-alpha.20
@types/react: ~17 => 17.0.0
react: ~17 => 17.0.1
react-dom: ~17 => 17.0.1
typescript: ^4.1.3 => 4.1.3
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:16 (13 by maintainers)
Top Results From Across the Web
Issues - GitHub
Cannot find module '../../../material-ui-styles/src' or its corresponding type declarations. #24112 ; Current Behavior ; Expected Behavior.
Read more >cannot find module '@emotion/react/jsx-runtime' or its ...
Describe the bug. I am using vite with preact-ts preset. Tried to install a react-specific library (chakra-ui). In development everything is okay, I...
Read more >Module not found: Can't resolve '@material-ui/core/Container'
It's looking for the component inside of my components directory instead of node_modules. I can't change directories into node_modules ../../ ...
Read more >@material-ui/styles - npm
Material UI v4 doesn't receive active development since September 2021. See ... indicating that this package has built-in type declarations.
Read more >React components for faster and easier web development ...
React components for faster and easier web development. Build your own design system, or start with Material Design. Material-UI React components that ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The fix doesn’t work for us (yet). I tested with the latest nightly release of TypeScript (version
4.2.0-dev.20210111
), which should have the fix. But the output still contains things likeimport("../../../material-ui/src/OverridableComponent")
.The fix is based on a heuristic that only triggers when there’s a regular
import
of the same module at the top of the file. E.g. to fix the import above, we would need a top-level statementimport {OverridableComponent} from '@material-ui';
. And the import isn’t there (e.g. not here) because the symbol is only used implicitly (on theInputAdornmentProps
).@oliviertassinari at line 61?