Skip to content

Commit

Permalink
feat(build): go from bundled esbuild to swc (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjuchault authored Mar 22, 2023
1 parent 89edc39 commit 5c713a5
Show file tree
Hide file tree
Showing 7 changed files with 2,215 additions and 82 deletions.
1 change: 0 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"project": "./tsconfig.json"
},
"plugins": ["import", "@typescript-eslint"],
"ignorePatterns": ["scripts/*"],
"extends": [
"eslint:recommended",
"plugin:eslint-comments/recommended",
Expand Down
15 changes: 15 additions & 0 deletions .swcrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "https://json.schemastore.org/swcrc",
"jsc": {
"parser": {
"syntax": "typescript"
}
},
"module": {
"type": "es6",
"noInterop": false
},
"exclude": ["__tests__"],
"sourceMaps": true,
"minify": true
}
Loading

0 comments on commit 5c713a5

Please sign in to comment.