Skip to content

Commit

Permalink
Removing vanilla-extract from babel config
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook committed May 8, 2024
1 parent 88c70d7 commit b345aef
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 86 deletions.
27 changes: 12 additions & 15 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
module.exports = {
presets: [
['@babel/preset-env', {
targets: {
esmodules: true
},
bugfixes: true,
loose: true,
exclude: [
'@babel/plugin-transform-async-to-generator',
'@babel/plugin-transform-regenerator'
]
}],
[
'@babel/preset-env',
{
targets: {
esmodules: true
},
bugfixes: true,
loose: true,
exclude: ['@babel/plugin-transform-async-to-generator', '@babel/plugin-transform-regenerator']
}
],
'@babel/preset-typescript',
'@babel/preset-react'
],
plugins: [
['@babel/plugin-transform-class-properties', { loose: true }],
["@vanilla-extract/babel-plugin", {}]
]
plugins: [['@babel/plugin-transform-class-properties', { loose: true }]]
}
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vanilla-extract/babel-plugin": "^1.2.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
Expand Down
74 changes: 4 additions & 70 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b345aef

Please sign in to comment.