Skip to content

Commit 791c61a

Browse files
authored
Merge pull request phuocng#207 from 1milligram/update-deps
Update dependencies
2 parents a75738b + 2981492 commit 791c61a

File tree

3 files changed

+47
-36
lines changed

3 files changed

+47
-36
lines changed

next-env.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/// <reference types="next" />
2-
/// <reference types="next/types/global" />
32
/// <reference types="next/image-types/global" />
43

54
// NOTE: This file should not be edited

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@
3232
"screenshot": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node bin/generateScreenshot.ts"
3333
},
3434
"dependencies": {
35-
"@1milligram/design": "^0.4.0",
36-
"@mdx-js/loader": "^1.6.22",
37-
"@mdx-js/react": "^1.6.22",
38-
"@next/mdx": "^11.1.2",
39-
"next": "^11.1.2",
40-
"prism-react-renderer": "^1.2.1",
35+
"@1milligram/design": "^0.4.1",
36+
"@mdx-js/loader": "^2.0.0",
37+
"@mdx-js/react": "^2.0.0",
38+
"@next/mdx": "^12.1.0",
39+
"next": "^12.1.0",
40+
"prism-react-renderer": "^1.3.1",
4141
"react": "^17.0.2",
4242
"react-dom": "^17.0.2"
4343
},
4444
"devDependencies": {
45-
"@types/react": "^17.0.20",
46-
"@types/react-dom": "^17.0.9",
47-
"puppeteer": "^10.4.0",
48-
"prettier": "^2.4.0",
49-
"sass": "^1.39.2",
50-
"serve": "^12.0.1",
51-
"typescript": "^4.4.3",
52-
"ts-loader": "^8.1.0",
53-
"ts-node": "^9.1.1",
45+
"@types/react": "^17.0.39",
46+
"@types/react-dom": "^17.0.11",
47+
"puppeteer": "^13.4.0",
48+
"prettier": "^2.5.1",
49+
"sass": "^1.49.9",
50+
"serve": "^13.0.2",
51+
"typescript": "^4.5.5",
52+
"ts-loader": "^9.2.6",
53+
"ts-node": "^10.5.0",
5454
"tslint": "^6.1.3",
5555
"tslint-react": "^5.0.0"
5656
}

tsconfig.json

Lines changed: 32 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,34 @@
11
{
2-
"compilerOptions": {
3-
"outDir": "./dist/",
4-
"esModuleInterop": true,
5-
"sourceMap": true,
6-
"noImplicitAny": true,
7-
"module": "esnext",
8-
"moduleResolution": "node",
9-
"target": "esnext",
10-
"jsx": "preserve",
11-
"lib": ["dom", "dom.iterable", "esnext"],
12-
"allowJs": true,
13-
"skipLibCheck": true,
14-
"strict": false,
15-
"forceConsistentCasingInFileNames": true,
16-
"noEmit": true,
17-
"resolveJsonModule": true,
18-
"isolatedModules": true
19-
},
20-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
21-
"exclude": ["bin", "node_modules"]
2+
"compilerOptions": {
3+
"outDir": "./dist/",
4+
"esModuleInterop": true,
5+
"sourceMap": true,
6+
"noImplicitAny": true,
7+
"module": "esnext",
8+
"moduleResolution": "node",
9+
"target": "esnext",
10+
"jsx": "preserve",
11+
"lib": [
12+
"dom",
13+
"dom.iterable",
14+
"esnext"
15+
],
16+
"allowJs": true,
17+
"skipLibCheck": true,
18+
"strict": false,
19+
"forceConsistentCasingInFileNames": true,
20+
"noEmit": true,
21+
"resolveJsonModule": true,
22+
"isolatedModules": true,
23+
"incremental": true
24+
},
25+
"include": [
26+
"next-env.d.ts",
27+
"**/*.ts",
28+
"**/*.tsx"
29+
],
30+
"exclude": [
31+
"bin",
32+
"node_modules"
33+
]
2234
}

0 commit comments

Comments
 (0)