From 2981492f467838db31bb7a32f65de25c757f729a Mon Sep 17 00:00:00 2001 From: Phuoc Nguyen Date: Fri, 25 Feb 2022 09:12:19 +0700 Subject: [PATCH] Update dependencies --- next-env.d.ts | 1 - package.json | 30 ++++++++++++++--------------- tsconfig.json | 52 +++++++++++++++++++++++++++++++-------------------- 3 files changed, 47 insertions(+), 36 deletions(-) diff --git a/next-env.d.ts b/next-env.d.ts index 9bc3dd4..4f11a03 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,5 +1,4 @@ /// -/// /// // NOTE: This file should not be edited diff --git a/package.json b/package.json index dc8d833..4feb8a8 100644 --- a/package.json +++ b/package.json @@ -32,25 +32,25 @@ "screenshot": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node bin/generateScreenshot.ts" }, "dependencies": { - "@1milligram/design": "^0.4.0", - "@mdx-js/loader": "^1.6.22", - "@mdx-js/react": "^1.6.22", - "@next/mdx": "^11.1.2", - "next": "^11.1.2", - "prism-react-renderer": "^1.2.1", + "@1milligram/design": "^0.4.1", + "@mdx-js/loader": "^2.0.0", + "@mdx-js/react": "^2.0.0", + "@next/mdx": "^12.1.0", + "next": "^12.1.0", + "prism-react-renderer": "^1.3.1", "react": "^17.0.2", "react-dom": "^17.0.2" }, "devDependencies": { - "@types/react": "^17.0.20", - "@types/react-dom": "^17.0.9", - "puppeteer": "^10.4.0", - "prettier": "^2.4.0", - "sass": "^1.39.2", - "serve": "^12.0.1", - "typescript": "^4.4.3", - "ts-loader": "^8.1.0", - "ts-node": "^9.1.1", + "@types/react": "^17.0.39", + "@types/react-dom": "^17.0.11", + "puppeteer": "^13.4.0", + "prettier": "^2.5.1", + "sass": "^1.49.9", + "serve": "^13.0.2", + "typescript": "^4.5.5", + "ts-loader": "^9.2.6", + "ts-node": "^10.5.0", "tslint": "^6.1.3", "tslint-react": "^5.0.0" } diff --git a/tsconfig.json b/tsconfig.json index ef9d48d..7d4a0c2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,22 +1,34 @@ { - "compilerOptions": { - "outDir": "./dist/", - "esModuleInterop": true, - "sourceMap": true, - "noImplicitAny": true, - "module": "esnext", - "moduleResolution": "node", - "target": "esnext", - "jsx": "preserve", - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": false, - "forceConsistentCasingInFileNames": true, - "noEmit": true, - "resolveJsonModule": true, - "isolatedModules": true - }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["bin", "node_modules"] + "compilerOptions": { + "outDir": "./dist/", + "esModuleInterop": true, + "sourceMap": true, + "noImplicitAny": true, + "module": "esnext", + "moduleResolution": "node", + "target": "esnext", + "jsx": "preserve", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "strict": false, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "resolveJsonModule": true, + "isolatedModules": true, + "incremental": true + }, + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "bin", + "node_modules" + ] }