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
We are running v1.12.4 with the following command:
parcel build --no-content-hash ./src/config.ts ./src/index.html --out-dir ./lib
In several of our projects and the resulting js files in the lib folder have source maps and are not minified
The tsconfig is as follows:
{ "compilerOptions": { "composite": false, "module": "commonjs", "moduleResolution": "node", "declaration": true, "noImplicitAny": false, "removeComments": true, "noLib": false, "outDir": "./lib", "rootDir": "./src", "emitDecoratorMetadata": true, "experimentalDecorators": true, "esModuleInterop": true, "skipLibCheck": true, "target": "es2018", "sourceMap": true, "lib": ["es2018", "dom"], }, "references": [ { "path": "../../common" }, { "path": "../../ui/packages/web" }, { "path": "../common" } ], "exclude": [ "node_modules", "test" ] }
Files should be minified and there shouldn't be any source maps
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs.
Sorry, something went wrong.
No branches or pull requests
🐛 bug report
We are running v1.12.4 with the following command:
In several of our projects and the resulting js files in the lib folder have source maps and are not minified
🎛 Configuration (.babelrc, package.json, cli command)
The tsconfig is as follows:
🤔 Expected Behavior
Files should be minified and there shouldn't be any source maps
🌍 Your Environment
The text was updated successfully, but these errors were encountered: