blob: 4580e39d0cd7709eb03bc3a103bc15da1a482924 [file] [log] [blame]
Sean Condondfc6dba2019-11-09 11:50:23 +00001{
Sean Condondfc6dba2019-11-09 11:50:23 +00002 "compilerOptions": {
Sean Condon98b6ddb2019-12-24 08:07:40 +00003 // Allow uses of these JS APIs
Sean Condondfc6dba2019-11-09 11:50:23 +00004 "lib": [
Sean Condon98b6ddb2019-12-24 08:07:40 +00005 "dom",
6 "es5",
7 "es2015.collection",
8 "es2015.iterable",
9 "es2015.promise",
10 "es2017",
11 "es2017.object"
12 ],
Sean Condon98b6ddb2019-12-24 08:07:40 +000013 // Don't scan the node_modules/@types folder for ambient types.
14 // This would force us to have all the types in the dependencies of
15 // each library.
16 // Instead we'll be explicit about declaring ambient type dependencies
17 // using the ///<reference types=""/> syntax.
Sean Condona3ad7792020-01-04 19:26:34 +000018 "types": [],
19 "paths": {
20 "org_onosproject_onos/web/gui2-fw-lib": ["web/gui2-fw-lib"]
21 }
Sean Condondfc6dba2019-11-09 11:50:23 +000022 }
23}