Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fully upgrade to TypeScript 4.x #178

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/frontend/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let rules = {
};

module.exports = {
extends: ['airbnb', 'plugin:prettier/recommended', 'prettier/react'],
extends: ['airbnb', 'plugin:prettier/recommended', 'prettier'],
parser: 'babel-eslint',
rules,
env: {
Expand Down
28 changes: 16 additions & 12 deletions {{cookiecutter.project_slug}}/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.0.0",
"@material-ui/icons": "^4.0.0",
"@material-ui/lab": "^4.0.0-alpha.54",
"jwt-decode": "^3.0.0",
"ra-data-json-server": "^3.5.2",
"ra-data-simple-rest": "^3.3.2",
"react": "^16.13.1",
"react-admin": "^3.5.2",
"react-dom": "^16.13.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.3",
"react-scripts": "4.0.3",
"react-truncate": "^2.4.0",
"standard": "^14.3.3",
"jwt-decode": "^3.0.0",
"@material-ui/lab": "^4.0.0-alpha.54"
"standard": "^16.0.0"
},
"scripts": {
"start": "react-scripts start",
Expand All @@ -37,26 +40,27 @@
]
},
"devDependencies": {
"typescript": "^4.0.2",
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"@testing-library/user-event": "^12.0.11",
"@types/jest": "^26.0.3",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^14.0.1",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"@types/jwt-decode": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1"
"react-test-renderer": "^16.13.1",
"typescript": "^4.0.2"
}
}
8 changes: 5 additions & 3 deletions {{cookiecutter.project_slug}}/frontend/src/views/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ export const Home: FC = () => {

const queryBackend = async () => {
try {
const message = await getMessage();
setMessage(message);
const msg = await getMessage();
setMessage(msg);
} catch (err) {
setError(err);
setError(String(err));
}
};

Expand Down Expand Up @@ -64,3 +64,5 @@ export const Home: FC = () => {
</>
);
};

export default Home;
8 changes: 5 additions & 3 deletions {{cookiecutter.project_slug}}/frontend/src/views/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const Login: FC = () => {
setError(err.message);
} else {
// handle errors thrown from backend
setError(err);
setError(String(err));
}
}
};
Expand All @@ -65,7 +65,7 @@ export const Login: FC = () => {
<Grid item>
<Face />
</Grid>
<Grid item md={true} sm={true} xs={true}>
<Grid item md sm xs>
<TextField
id="email"
label="Email"
Expand All @@ -84,7 +84,7 @@ export const Login: FC = () => {
<Grid item>
<Fingerprint />
</Grid>
<Grid item md={true} sm={true} xs={true}>
<Grid item md sm xs>
<TextField
id="password"
label="Password"
Expand Down Expand Up @@ -149,3 +149,5 @@ export const Login: FC = () => {
</Paper>
);
};

export default Login;
10 changes: 6 additions & 4 deletions {{cookiecutter.project_slug}}/frontend/src/views/SignUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const SignUp: FC = () => {
setError(err.message);
} else {
// handle errors thrown from backend
setError(err);
setError(String(err));
}
}
}
Expand All @@ -63,7 +63,7 @@ export const SignUp: FC = () => {
<Grid item>
<Face />
</Grid>
<Grid item md={true} sm={true} xs={true}>
<Grid item md sm xs>
<TextField
id="email"
label="Email"
Expand All @@ -82,7 +82,7 @@ export const SignUp: FC = () => {
<Grid item>
<Fingerprint />
</Grid>
<Grid item md={true} sm={true} xs={true}>
<Grid item md sm xs>
<TextField
id="password"
label="Password"
Expand All @@ -100,7 +100,7 @@ export const SignUp: FC = () => {
<Grid item>
<Fingerprint />
</Grid>
<Grid item md={true} sm={true} xs={true}>
<Grid item md sm xs>
<TextField
id="passwordConfirmation"
label="Confirm password"
Expand Down Expand Up @@ -136,3 +136,5 @@ export const SignUp: FC = () => {
</Paper>
);
};

export default SignUp;
14 changes: 11 additions & 3 deletions {{cookiecutter.project_slug}}/frontend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
Expand All @@ -13,7 +17,11 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true
},
"include": ["src", "decs.d.ts"]
"include": [
"src",
"decs.d.ts"
]
}