aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorJack Franklin <[email protected]>2020-05-27 18:39:01 +0100
committerGitHub <[email protected]>2020-05-27 13:39:01 -0400
commiteb2be7caf6c88a41a184ef5ea6e4675f0f372771 (patch)
tree1e17bf59398b1cff97c5e2711b484edd8f9f8c8c /tsconfig.json
parent59cc3d1bc3b85d347baa8883b6206ba88a6071c0 (diff)
Export Mitt types for TS consumers (#101)
* Export Mitt types for TS consumers * Add rudimentary tests for exported TS types * Run tests against the generated output instead of src
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..2610831
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,11 @@
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "noEmit": true,
+ "declaration": true,
+ "moduleResolution": "node"
+ },
+ "exclude": [
+ "test"
+ ]
+}