Skip to content

Commit

Permalink
Updating next and react
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmeff committed Jan 1, 2022
1 parent 24b0316 commit 2c515a7
Show file tree
Hide file tree
Showing 5 changed files with 151 additions and 4,013 deletions.
11 changes: 0 additions & 11 deletions babelrc.json

This file was deleted.

5 changes: 4 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
36 changes: 17 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,24 @@
"author": "Matthew Frey <[email protected]>",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.6",
"detect-node": "^2.0.4",
"next": "^9.5.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"styled-components": "^5.2.0",
"styled-reset": "^4.2.3"
"classnames": "2.x",
"detect-node": "2.x",
"next": "12.x",
"react": "17.x",
"react-dom": "17.x",
"react-icons": "3.x",
"styled-components": "5.x",
"styled-reset": "4.x"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/detect-node": "^2.0.0",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.3",
"babel-plugin-styled-components": "^1.11.1",
"fork-ts-checker-webpack-plugin": "^5.2.0",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.0.3"
"@types/classnames": "2.x",
"@types/detect-node": "2.x",
"@types/node": "16.x",
"@types/react": "17.x",
"@types/react-dom": "17.x",
"@types/styled-components": "5.x",
"tslint": "6.x",
"tslint-config-airbnb": "5.x",
"typescript": "4.x"
}
}
55 changes: 28 additions & 27 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"exclude": [
"node_modules"
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
]
}
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
},
"exclude": [
"node_modules"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
]
}
Loading

0 comments on commit 2c515a7

Please sign in to comment.