Skip to content

Commit

Permalink
intializing project with babel and webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
Vidit-Kushwaha committed May 31, 2024
1 parent a8a1d2d commit 2ac4084
Show file tree
Hide file tree
Showing 10 changed files with 8,373 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
],
"@babel/preset-typescript"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build/
node_modules
8 changes: 8 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
semi: false,
trailingComma: 'es5',
singleQuote: true,
printWidth: 80,
tabWidth: 2,
endOfLine: 'auto'
}
Loading

0 comments on commit 2ac4084

Please sign in to comment.