diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json index 1760a00..6398793 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,14 +2,21 @@ "compilerOptions": { "target": "es5", "module": "commonjs", - "moduleResolution": "node", + "noImplicitAny": false, "sourceMap": true, + "baseUrl": ".", + "paths": { + "*": ["node_modules/*"] + }, + "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, - "noImplicitAny": false, "suppressImplicitAnyIndexErrors": true, "outDir": "ts_compiled" }, + "include": [ + "src/**/*" + ], "exclude": ["node_modules"] } |
