Skip to content

Commit

Permalink
Fix code style issues with ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Feb 14, 2021
1 parent bf9dad2 commit 52e3ad0
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
Expand All @@ -26,19 +22,9 @@
"jsx": "react",
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"types": [
"react-spring",
"jest"
],
"types": ["react-spring", "jest"],
"baseUrl": "src"
},
"exclude": [
"node_modules",
"cypress"
],
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"src/components/Confetti/index.js"
]
"exclude": ["node_modules", "cypress"],
"include": ["./src/**/*.ts", "./src/**/*.tsx", "src/components/Confetti/index.js"]
}

0 comments on commit 52e3ad0

Please sign in to comment.