Skip to content

Commit

Permalink
chore: replace react-app-env.d.ts w/ a tsconfig include entry
Browse files Browse the repository at this point in the history
  • Loading branch information
brncsk committed Jan 1, 2023
1 parent e65807c commit 841c2b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/react-app-env.d.ts

This file was deleted.

10 changes: 2 additions & 8 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,
"esModuleInterop": true,
Expand All @@ -20,7 +16,5 @@
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
"include": ["src", "node_modules/react-scripts"]
}

0 comments on commit 841c2b2

Please sign in to comment.