Skip to content

Commit

Permalink
fix(build tool): vite -> parcel
Browse files Browse the repository at this point in the history
  • Loading branch information
LexSwed committed Dec 22, 2022
1 parent c3e92cc commit 8012775
Show file tree
Hide file tree
Showing 13 changed files with 5,215 additions and 3,874 deletions.
3 changes: 3 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
chrome >= 100
firefox >= 100
safari >= 16
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

tsconfig.tsbuildinfo
tsconfig.tsbuildinfo
.parcel-cache
13 changes: 13 additions & 0 deletions .parcelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "@parcel/config-default",
"transformers": {
"*.{ts,tsx}": [
"@parcel/transformer-typescript-tsc"
]
},
"optimizers": {
"*.css": [
"@parcel/optimizer-css"
]
}
}
6 changes: 6 additions & 0 deletions .postcssrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"plugins": {
"tailwindcss/nesting": {},
"tailwindcss": {}
}
}
Loading

0 comments on commit 8012775

Please sign in to comment.