Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 1 | { |
| 2 | "compilerOptions": { |
| 3 | "baseUrl": ".", |
| 4 | "declaration": false, |
| 5 | "emitDecoratorMetadata": true, |
| 6 | "experimentalDecorators": true, |
| 7 | "allowJs": true, |
| 8 | "mapRoot": "./", |
| 9 | "module": "commonjs", |
| 10 | "moduleResolution": "node", |
| 11 | "outDir": "../dist/out-tsc", |
| 12 | "lib": [ |
| 13 | "es6", |
| 14 | "dom" |
| 15 | ], |
| 16 | "sourceMap": true, |
| 17 | "target": "es5", |
| 18 | "typeRoots": [ |
| 19 | "../node_modules/@types", |
| 20 | "./typings" |
| 21 | ], |
| 22 | "types": [ |
| 23 | "jquery", |
| 24 | "core-js", |
| 25 | "node" |
Tal Gitelman | 51d50f0 | 2017-12-10 18:55:03 +0200 | [diff] [blame^] | 26 | ], |
| 27 | "forceConsistentCasingInFileNames": true |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 28 | }, |
| 29 | "exclude": [ |
| 30 | "test.ts", |
| 31 | "**/*.spec.ts" |
| 32 | ] |
| 33 | } |