We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When using an npm package that exports a scss file, an error occurs: "Property 'MenuEnter' does not exist on type '{}'"
scss
To Reproduce Steps to reproduce the behavior:
npm install bulma
@use "bulma/sass/utilities/mixins";
.MenuEnter { background: red; @include mixins.from(1280px) { background: blue; } }
import styles from "./menu.module.scss";
styles.MenuEnter
Expected behavior No error messages
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
I haven't checked.
Additional context tsconfig.json
{ "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { "jsx": "react-jsx", "module": "esnext", "outDir": "${configDir}/dist", "moduleResolution": "bundler", "noEmitOnError": true, "plugins": [ { "name": "typescript-plugin-css-modules", "options": { "goToDefinition": true } } ], "resolveJsonModule": true, "target": "esnext" }, "exclude": ["node_modules", "${configDir}/dist"], "extends": ["@tsconfig/strictest/tsconfig"] }
"typescript-plugin-css-modules": version "5.1.0"
bulma source: https://github.com/jgthms/bulma
The text was updated successfully, but these errors were encountered:
same issue
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When using an npm package that exports a
scss
file, an error occurs: "Property 'MenuEnter' does not exist on type '{}'"To Reproduce
Steps to reproduce the behavior:
npm install bulma
@use "bulma/sass/utilities/mixins";
import styles from "./menu.module.scss";
styles.MenuEnter
Expected behavior
No error messages
Screenshots

Desktop (please complete the following information):
Smartphone (please complete the following information):
I haven't checked.
Additional context
tsconfig.json
"typescript-plugin-css-modules": version "5.1.0"
bulma source: https://github.com/jgthms/bulma
The text was updated successfully, but these errors were encountered: