Skip to content

Commit

Permalink
update typescript version
Browse files Browse the repository at this point in the history
  • Loading branch information
salgum1114 committed Aug 30, 2024
1 parent a630985 commit c03652a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"tslint": "^6.1.1",
"tslint-react": "^5.0.0",
"typedoc": "^0.17.4",
"typescript": "^3.9.10",
"typescript": "^4.7.4",
"url-loader": "^4.1.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1",
Expand Down
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"declaration": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": false,
Expand All @@ -12,13 +13,14 @@
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"useDefineForClassFields": false,
"allowJs": true,
"jsx": "react",
"module": "commonjs",
"moduleResolution": "node",
"target": "esnext",
"outDir": "lib",
"lib": ["dom", "esnext"]
"lib": ["dom", "esnext", "ESNext.String"]
},
"include": ["src/canvas/index.tsx", "src/canvas/global.d.ts"],
"exclude": ["node_modules", "dist", "lib"]
Expand Down

0 comments on commit c03652a

Please sign in to comment.