Skip to content

Commit

Permalink
fix: TSConfig es5 target & es6 lib (#378)
Browse files Browse the repository at this point in the history
  • Loading branch information
Douglas Fabris authored and ggazzo committed Jan 27, 2021
1 parent 55263f2 commit 8d9aaa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/css-in-js/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"compilerOptions": {
"rootDir": "./src",
"module": "ESNext",
"target": "ES2015",
"lib": ["dom", "ES2015"],
"target": "es5",
"lib": ["dom", "es6"],
"sourceMap": true,
"allowJs": false,
"jsx": "react",
Expand All @@ -20,7 +20,7 @@
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"esModuleInterop": true
},
"include": ["src"],
"exclude": ["dist", "node_modules", "src/*.spec.ts"]
Expand Down

0 comments on commit 8d9aaa2

Please sign in to comment.