update parcel so it actually works and doesn't crash

but still use postcss because otherwise blueprint.js doesn't compile
This commit is contained in:
2022-04-04 19:26:27 +00:00
committed by Stepan Usatiuk
parent 24c656c9f1
commit 048ad9aa70
6 changed files with 2840 additions and 3504 deletions

16
frontend/.parcelrc Normal file
View File

@@ -0,0 +1,16 @@
{
"extends": "@parcel/config-default",
"transformers": {
"*.{ts,tsx}": [
"@parcel/transformer-typescript-tsc"
],
"*.css": [
"@parcel/transformer-postcss"
]
},
"optimizers": {
"*.css": [
"@parcel/optimizer-cssnano"
]
}
}