Skip to content

Commit 28b0011

Browse files
Rollback: Change TypeScript target from ES6 to ES5 and format tsconfig.json
1 parent dc992ea commit 28b0011

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

tsconfig.json

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"compilerOptions": {
3-
"target": "es6",
4-
"lib": ["dom", "dom.iterable", "esnext"],
3+
"target": "es5",
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
59
"allowJs": true,
610
"skipLibCheck": true,
711
"esModuleInterop": true,
@@ -16,5 +20,7 @@
1620
"noEmit": true,
1721
"jsx": "react-jsx"
1822
},
19-
"include": ["src"]
23+
"include": [
24+
"src"
25+
]
2026
}

0 commit comments

Comments
 (0)