aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2019-05-01 10:16:23 +0200
committerTeddy Wing2019-05-01 10:16:23 +0200
commit2cede3c33a48cda461306e7859dca975af05ad70 (patch)
tree3b2d216b4b8b7ccc86dabdffe3f816ea1bace82c
parent54cc64944734aec662fdacd9fcf53a7f9d62c845 (diff)
downloadmuttagen-2cede3c33a48cda461306e7859dca975af05ad70.tar.bz2
Add tsconfig.json
* Build a single output file for use in a browser. * Compile the "index.ts" file.
-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..453a1dc
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,11 @@
+{
+ "compilerOptions": {
+ "module": "amd",
+ "target": "ES5",
+ "outFile": "./build/index.js",
+ "sourceMap": true
+ },
+ "files": [
+ "index.ts"
+ ]
+}