Created
March 2, 2020 08:57
-
-
Save matthewhartman/7f9becd15c948f62775e24a443d0cdcf to your computer and use it in GitHub Desktop.
Parcel Configuration for Typescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "parcel-example", | |
"version": "1.0.0", | |
"description": "A basic setup using Parcel - A blazing fast, zero configuration web application bundler", | |
"scripts": { | |
"start": "NODE_ENV=development parcel src/index.html --open", | |
"build": "NODE_ENV=production rm -rf dist && tsc --noEmit && parcel build src/index.html", | |
"clean": "rm -rf dist" | |
}, | |
"private": true, | |
"devDependencies": { | |
"parcel-bundler": "^1.12.4", | |
"sass": "^1.26.2", | |
"typescript": "^3.8.3" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment