aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json10
1 files changed, 5 insertions, 5 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 654d7ac..c9ed64f 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,12 +1,12 @@
{
"compilerOptions": {
"declaration": true,
+ "esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": true,
+ "lib": ["es2015", "dom", "es2015.promise"],
+ "module": "es2015",
"strict": true,
- "target": "ES3",
- "lib": ["es5", "dom", "es2015.promise"]
- },
- "$schema": "https://json.schemastore.org/tsconfig",
- "display": "Recommended"
+ "target": "es2015"
+ }
}