aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorPriyansh <[email protected]>2020-12-22 18:39:20 +0530
committerPriyansh <[email protected]>2020-12-22 18:39:20 +0530
commitfb873ec2c3cb71cd478e6d48b424ddbba67cab0a (patch)
tree29e763f84d54d24152a212ec19cdfad2d56235b5 /tsconfig.json
parent6593dc005ae8d8f94e7c6644e3af4026e57cd2bf (diff)
downloadstyx-fb873ec2c3cb71cd478e6d48b424ddbba67cab0a.tar.xz
styx-fb873ec2c3cb71cd478e6d48b424ddbba67cab0a.zip
App rewrite using typescript
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json11
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"]
}