Skip to content

Commit af702c2

Browse files
committed
feat: @tsconfig/create-react-app as base configuration
1 parent 5abf3ec commit af702c2

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

package-lock.json

Lines changed: 15 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-typescript-material",
3-
"version": "2.0.11",
3+
"version": "2.0.13",
44
"description": "_DESCRIPTION_",
55
"author": {
66
"name": "Anton Karpenko",
@@ -12,11 +12,11 @@
1212
"react",
1313
"typescript",
1414
"material",
15-
"material ui"
15+
"mui"
1616
],
1717
"repository": {
1818
"type": "git",
19-
"url": "https://github.com/karpolan/react-typescript-material-ui-with-auth-starter.git"
19+
"url": "put your repo url here..."
2020
},
2121
"scripts": {
2222
"start": "react-scripts start",
@@ -45,6 +45,7 @@
4545
"@testing-library/jest-dom": "latest",
4646
"@testing-library/react": "latest",
4747
"@testing-library/user-event": "latest",
48+
"@tsconfig/create-react-app": "latest",
4849
"@types/jest": "latest",
4950
"@types/node": "latest",
5051
"@types/react": "latest",

tsconfig.json

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,9 @@
11
{
2+
"extends": "@tsconfig/create-react-app/tsconfig.json",
23
"compilerOptions": {
3-
"target": "esnext",
44
"lib": ["es6", "dom", "dom.iterable", "esnext"],
5-
"allowJs": true,
6-
"skipLibCheck": true,
7-
"esModuleInterop": true,
8-
"allowSyntheticDefaultImports": true,
9-
"strict": true,
10-
"forceConsistentCasingInFileNames": true,
11-
"noFallthroughCasesInSwitch": true,
125
"module": "esnext",
13-
"moduleResolution": "node",
14-
"resolveJsonModule": true,
15-
"isolatedModules": true,
16-
"noEmit": true,
17-
"jsx": "react-jsx",
18-
"noImplicitAny": true,
19-
"noImplicitThis": true,
20-
"strictNullChecks": true
6+
"target": "esnext"
217
},
228
"include": ["src"]
239
}

0 commit comments

Comments
 (0)