We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
As per #564, should this have been fixed?
I'm using microbundle 0.13.0
I tried the following build commands to no avail:
microbundle --tsconfig tsconfig.son --jsx React.createElement
microbundle --tsconfig tsconfig.json --jsxFragment React.Fragment --jsx React.createElement
Microbundle 0.13.0 React 17.0.1 Typescript 4.1.3
tsconfig.json:
{ "compilerOptions": { "target": "ESNext", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": true, "forceConsistentCasingInFileNames": true, "noEmit": true, "esModuleInterop": true, "module": "ESNext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve" }, "exclude": ["node_modules", "out", "dist"] }
As per #564, should this have been fixed?
I'm using microbundle 0.13.0
I tried the following build commands to no avail:
microbundle --tsconfig tsconfig.son --jsx React.createElement<-- this gives a Fragment is not defined errormicrobundle --tsconfig tsconfig.json --jsxFragment React.Fragment --jsx React.createElement<-- this gives a React is not defined errortsconfig.json:
{ "compilerOptions": { "target": "ESNext", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": true, "forceConsistentCasingInFileNames": true, "noEmit": true, "esModuleInterop": true, "module": "ESNext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve" }, "exclude": ["node_modules", "out", "dist"] }