aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json8
1 files changed, 5 insertions, 3 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 2610831..acab4f5 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -3,9 +3,11 @@
"compilerOptions": {
"noEmit": true,
"declaration": true,
- "moduleResolution": "node"
+ "moduleResolution": "node",
+ "esModuleInterop": true
},
- "exclude": [
- "test"
+ "include": [
+ "src/*.ts",
+ "test/*.ts",
]
}