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 | ], |
Sean Condon | e4e8f6a | 2020-04-13 10:30:35 +0100 | [diff] [blame] | 13 | "emitDecoratorMetadata": true, |
| 14 | "target": "es6", |
Sean Condon | 98b6ddb | 2019-12-24 08:07:40 +0000 | [diff] [blame] | 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. |
Sean Condon | a3ad779 | 2020-01-04 19:26:34 +0000 | [diff] [blame] | 20 | "types": [], |
| 21 | "paths": { |
Sean Condon | 3dd062f | 2020-04-14 09:25:00 +0100 | [diff] [blame] | 22 | "org_onosproject_onos/*": ["*"] |
Sean Condon | a3ad779 | 2020-01-04 19:26:34 +0000 | [diff] [blame] | 23 | } |
Sean Condon | dfc6dba | 2019-11-09 11:50:23 +0000 | [diff] [blame] | 24 | } |
| 25 | } |