Skip to content

Commit

Permalink
feat: change ts.config target to ES6
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsJPeschel authored Apr 2, 2024
1 parent e3ec0aa commit e710df2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@optum/react-hooks",
"version": "1.0.2-next.0",
"version": "1.0.2-next.1",
"description": "A reusable set of React hooks",
"repository": "https://github.com/Optum/react-hooks",
"license": "Apache 2.0",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"compilerOptions": {
"module": "Node16",
"moduleResolution":"Node16",
"preserveSymlinks": true,
"rootDir": ".",
"outDir": "build/cjs",
"declaration": true,
"declarationDir": "build/types/cjs",
"target": "es5",
"target": "ES6",
"sourceMap": true,
"strict": true,
"noImplicitReturns": true,
"importHelpers": true,
"noEmitHelpers": true,
"noUnusedLocals": true,
"jsx": "preserve",
"lib": ["es5", "dom"],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
Expand Down

0 comments on commit e710df2

Please sign in to comment.