Skip to content

Commit

Permalink
fix: Update target to ES6
Browse files Browse the repository at this point in the history
  • Loading branch information
neet committed Dec 24, 2022
1 parent 3c563e9 commit 3a3acec
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"compilerOptions": {
"target": "es5",
"module": "es6",
"outDir": "./dist",
"target": "ES6",
"module": "ES6",
"lib": ["ESNext"],
"declaration": false,
"esModuleInterop": true,
Expand All @@ -11,10 +10,10 @@
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"pretty": true,
"removeComments": false,
"useDefineForClassFields": false,
"skipLibCheck": true,
"noImplicitOverride": true,
"noEmit": true,
"strict": true
},
"include": ["./src/**/*", "./tests/**/*", "./test-utils/**/*"],
Expand Down

0 comments on commit 3a3acec

Please sign in to comment.