Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kokutaro committed May 19, 2020
1 parent 5c98333 commit 5f5a3e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
8 changes: 1 addition & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,11 @@ module.exports = {
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/recommended',
'plugin:react/recommended',
'plugin:import/typescript',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
plugins: ['simple-import-sort', 'react'],
settings: {
react: {
version: 'detect',
},
},
plugins: ['simple-import-sort'],
env: {
es6: true,
node: true,
Expand Down
4 changes: 1 addition & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"target": "ESNext",
"module": "CommonJS",
"strict": true,
"jsx": "react",
"sourceRoot": "./src",
"outDir": "./dist",
"removeComments": true,
Expand All @@ -17,9 +16,8 @@
"noImplicitAny": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": ["node_modules/@types", "src/@types"],
"types": ["react"],
"inlineSourceMap": true,
"inlineSources": true
},
"files": ["src/main.ts", "src/core/preLoad.ts"]
"files": ["src/app.ts"]
}

0 comments on commit 5f5a3e6

Please sign in to comment.