diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 6 |
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"] |
