Sean Condon | dfc6dba | 2019-11-09 11:50:23 +0000 | [diff] [blame] | 1 | { |
Sean Condon | dfc6dba | 2019-11-09 11:50:23 +0000 | [diff] [blame] | 2 | "compilerOptions": { |
Sean Condon | 98b6ddb | 2019-12-24 08:07:40 +0000 | [diff] [blame] | 3 | // Allow uses of these JS APIs |
Sean Condon | dfc6dba | 2019-11-09 11:50:23 +0000 | [diff] [blame] | 4 | "lib": [ |
Sean Condon | 98b6ddb | 2019-12-24 08:07:40 +0000 | [diff] [blame] | 5 | "dom", |
| 6 | "es5", |
| 7 | "es2015.collection", |
| 8 | "es2015.iterable", |
| 9 | "es2015.promise", |
| 10 | "es2017", |
| 11 | "es2017.object" |
| 12 | ], |
| 13 | // Permit decorator syntax |
| 14 | "experimentalDecorators": true, |
| 15 | // Don't scan the node_modules/@types folder for ambient types. |
| 16 | // This would force us to have all the types in the dependencies of |
| 17 | // each library. |
| 18 | // Instead we'll be explicit about declaring ambient type dependencies |
| 19 | // using the ///<reference types=""/> syntax. |
| 20 | "types": [] |
Sean Condon | dfc6dba | 2019-11-09 11:50:23 +0000 | [diff] [blame] | 21 | } |
| 22 | } |