Skip to content

Commit

Permalink
[#3] chore : setting babel, eslint, jest
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDevLuffy committed Feb 8, 2021
1 parent e7a9cfb commit 72b03c8
Show file tree
Hide file tree
Showing 6 changed files with 21,284 additions and 3,438 deletions.
14 changes: 14 additions & 0 deletions tecobrary-admin/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"presets": [["next/babel"]],
"plugins": [
[
"module-resolver",
{
"root": ["./"],
"alias": {
"@components": "./components"
}
}
]
]
}
12 changes: 12 additions & 0 deletions tecobrary-admin/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"plugins": ["@typescript-eslint"],
"extends": ["plugin:@typescript-eslint/eslint-recommended"]
}
Loading

0 comments on commit 72b03c8

Please sign in to comment.