summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2018-07-26 13:07:50 +1000
committerRyan Dahl <ry@tinyclouds.org>2018-07-25 23:07:50 -0400
commit5562c36824a63634212ee0c6ad501f230a8e1133 (patch)
tree1646a6fc7c783ab8a9f66db73bd4d6d2da5428d8 /tsconfig.json
parent180170d860921f93a7e28e57b8d0dae84f8076ba (diff)
Remove msg_generated hack (#409)
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index d78a81764..adc2b8bf3 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"allowJs": true,
+ "baseUrl": ".",
"module": "esnext",
"noImplicitAny": true,
"sourceMap": true,
@@ -12,7 +13,10 @@
"pretty": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
- "experimentalDecorators": true
+ "experimentalDecorators": true,
+ "paths": {
+ "*": [ "*", "out/debug/*", "out/default/*", "out/release/*" ]
+ }
},
"include": ["js/main.ts"],
"exclude": ["node_modules"]