diff options
| author | Teddy Wing | 2019-05-01 10:16:23 +0200 |
|---|---|---|
| committer | Teddy Wing | 2019-05-01 10:16:23 +0200 |
| commit | 2cede3c33a48cda461306e7859dca975af05ad70 (patch) | |
| tree | 3b2d216b4b8b7ccc86dabdffe3f816ea1bace82c | |
| parent | 54cc64944734aec662fdacd9fcf53a7f9d62c845 (diff) | |
| download | muttagen-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.json | 11 |
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" + ] +} |
