blob: 8212a16df373d6fb1e6ea5bd982644bb7faabc1e [file] [log] [blame]
Matteo Scandolod819c922016-12-02 14:06:14 -08001{
2 "compilerOptions": {
3 "sourceMap": true,
4 "emitDecoratorMetadata": true,
5 "experimentalDecorators": true,
Matteo Scandolo43ffb672016-12-02 14:49:58 -08006 "moduleResolution": "node",
Matteo Scandolod819c922016-12-02 14:06:14 -08007 "removeComments": false,
Matteo Scandolo8b9f1642016-12-05 17:08:26 -08008 "noImplicitAny": false,
Matteo Scandolo40f8fa92016-12-07 09:21:35 -08009 "noEmitOnError": false,
10 "target": "es5"
Matteo Scandolod819c922016-12-02 14:06:14 -080011 },
12 "compileOnSave": false,
Matteo Scandolo43ffb672016-12-02 14:49:58 -080013 "include": [
Matteo Scandolod819c922016-12-02 14:06:14 -080014 "src/**/*.ts",
Matteo Scandolo43ffb672016-12-02 14:49:58 -080015 "src/**/*.tsx"
16 ],
17 "exclude": [
18 "typings/**",
19 "conf/app/**",
Matteo Scandolo44b7d6b2016-12-08 13:48:01 -080020 "node_modules"
Matteo Scandolod819c922016-12-02 14:06:14 -080021 ]
22}