8000 Clarify required JavaScript functionality · wimpyprogrammer/strings-to-regex@e98d9ac · GitHub
[go: up one dir, main page]

Skip to content

Commit e98d9ac

Browse files
Clarify required JavaScript functionality
Enumerate the specific TypeScript libraries needed for the application and its demo.
1 parent faff232 commit e98d9ac

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

demo/tsconfig.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
{
2-
"compilerOptions": {},
2+
"compilerOptions": {
3+
"lib": [
4+
"dom",
5+
"es5",
6+
"es2015.collection",
7+
"es2015.core",
8+
"es2015.iterable",
9+
"es2017.object"
10+
]
11+
},
312
"extends": "../tsconfig.json",
413
"include": ["../src", "./src", "./webpack.config.js"]
514
}

tsconfig.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@
55
"baseUrl": "./",
66
"downlevelIteration": true,
77
"rootDir": "./",
8-
"lib": ["dom", "es2017"],
8+
"lib": [
9+
"es5",
10+
"es2015.collection",
11+
"es2015.core",
12+
"es2015.iterable",
13+
"es2017.object"
14+
],
915
"module": "es2015",
1016
"noEmit": true,
1117
"noImplicitAny": true,

0 commit comments

Comments
 (0)
0