diff options
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json new file mode 100644 index 000000000..ca58ddb89 --- /dev/null +++ b/client/tsconfig.json | |||
@@ -0,0 +1,18 @@ | |||
1 | { | ||
2 | "compilerOptions": { | ||
3 | "target": "es5", | ||
4 | "module": "system", | ||
5 | "moduleResolution": "node", | ||
6 | "sourceMap": true, | ||
7 | "emitDecoratorMetadata": true, | ||
8 | "experimentalDecorators": true, | ||
9 | "removeComments": false, | ||
10 | "noImplicitAny": false | ||
11 | }, | ||
12 | "exclude": [ | ||
13 | "node_modules", | ||
14 | "typings/main", | ||
15 | "typings/main.d.ts" | ||
16 | ], | ||
17 | "compileOnSave": false | ||
18 | } | ||