Skip to content

Commit 48f947c

Browse files
authored
Merge pull request #8 from karpolan/Rrequested-Improvements
Requested improvements
2 parents 54ca548 + af702c2 commit 48f947c

File tree

4 files changed

+24
-27
lines changed

4 files changed

+24
-27
lines changed

.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: ['react-app', 'react-app/jest'],
3+
};

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 & 9 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",
@@ -53,12 +54,6 @@
5354
"prettier": "latest",
5455
"typescript": "latest"
5556
},
56-
"eslintConfig": {
57-
"extends": [
58-
"react-app",
59-
"react-app/jest"
60-
]
61-
},
6257
"browserslist": {
6358
"production": [
6459
">0.2%",

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)