Skip to content

Commit

Permalink
Upgrade to [email protected] (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyesungoh authored Nov 6, 2022
1 parent cffdd6d commit f34be5b
Show file tree
Hide file tree
Showing 25 changed files with 630 additions and 182 deletions.
453 changes: 367 additions & 86 deletions .pnp.cjs

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
experimental: {
appDir: false,
},
pageExtensions: ['page.tsx', 'api.ts'],
swcMinify: true,
compiler: {
Expand Down
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"author": "12-team3-web",
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
Expand All @@ -24,11 +25,11 @@
"axios": "^0.27.2",
"emotion-normalize": "^11.0.1",
"framer-motion": "^7.5.1",
"next": "^12.2.4",
"next": "^13.0.2",
"next-compose-plugins": "^2.2.1",
"qs": "^6.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recoil": "^0.7.4",
"sharp": "^0.30.7"
},
Expand All @@ -37,7 +38,7 @@
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@emotion/eslint-plugin": "^11.7.0",
"@next/eslint-plugin-next": "^12.2.0",
"@next/eslint-plugin-next": "^13.0.2",
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
Expand All @@ -57,6 +58,7 @@
"cypress": "^10.2.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-cypress": "^2.12.1",
Expand Down
30 changes: 25 additions & 5 deletions 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,
"strict": true,
Expand All @@ -18,9 +22,25 @@
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
"@/*": [
"src/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "@types"],
"exclude": ["node_modules", "cypress"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"@types",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"cypress"
]
}
Loading

0 comments on commit f34be5b

Please sign in to comment.