aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-05-08 12:45:04 +0200
committerSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-05-08 12:45:04 +0200
commit57e37455ca3b0810f6b3a960c6300be2486c31de (patch)
tree3c7d0d2c0c268542cb76494dae634e27071c5a84 /tsconfig.json
parentb9165f58f27c8209797c0acf5fd1c83124de0849 (diff)
downloadgnunet-webui-57e37455ca3b0810f6b3a960c6300be2486c31de.tar.gz
gnunet-webui-57e37455ca3b0810f6b3a960c6300be2486c31de.zip
add hello world
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..a6c016b
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,19 @@
1{
2 "compileOnSave": false,
3 "compilerOptions": {
4 "outDir": "./dist/out-tsc",
5 "sourceMap": true,
6 "declaration": false,
7 "moduleResolution": "node",
8 "emitDecoratorMetadata": true,
9 "experimentalDecorators": true,
10 "target": "es5",
11 "typeRoots": [
12 "node_modules/@types"
13 ],
14 "lib": [
15 "es2017",
16 "dom"
17 ]
18 }
19}