Skip to content

Commit 5802499

Browse files
author
Douglas Fabris
authored
fix: TSConfig es5 target & es6 lib (#378)
1 parent 8a1b552 commit 5802499

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/css-in-js/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"compilerOptions": {
33
"rootDir": "./src",
44
"module": "ESNext",
5-
"target": "ES2015",
6-
"lib": ["dom", "ES2015"],
5+
"target": "es5",
6+
"lib": ["dom", "es6"],
77
"sourceMap": true,
88
"allowJs": false,
99
"jsx": "react",
@@ -20,7 +20,7 @@
2020
"suppressImplicitAnyIndexErrors": true,
2121
"noUnusedLocals": true,
2222
"noUnusedParameters": true,
23-
"esModuleInterop": true,
23+
"esModuleInterop": true
2424
},
2525
"include": ["src"],
2626
"exclude": ["dist", "node_modules", "src/*.spec.ts"]

0 commit comments

Comments
 (0)