Skip to content

Commit

Permalink
feat: @tsconfig/create-react-app as base configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
karpolan committed Dec 4, 2022
1 parent 5abf3ec commit af702c2
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
17 changes: 15 additions & 2 deletions package-lock.json

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

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-typescript-material",
"version": "2.0.11",
"version": "2.0.13",
"description": "_DESCRIPTION_",
"author": {
"name": "Anton Karpenko",
Expand All @@ -12,11 +12,11 @@
"react",
"typescript",
"material",
"material ui"
"mui"
],
"repository": {
"type": "git",
"url": "https://github.com/karpolan/react-typescript-material-ui-with-auth-starter.git"
"url": "put your repo url here..."
},
"scripts": {
"start": "react-scripts start",
Expand Down Expand Up @@ -45,6 +45,7 @@
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@tsconfig/create-react-app": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/react": "latest",
Expand Down
18 changes: 2 additions & 16 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,9 @@
{
"extends": "@tsconfig/create-react-app/tsconfig.json",
"compilerOptions": {
"target": "esnext",
"lib": ["es6", "dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true
"target": "esnext"
},
"include": ["src"]
}

0 comments on commit af702c2

Please sign in to comment.