blob: b4b4ac70a6c4ade818e47e9190d1bf5b8ace70ec [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 Condone4e8f6a2020-04-13 10:30:35 +010013 "emitDecoratorMetadata": true,
14 "target": "es6",
Sean Condon98b6ddb2019-12-24 08:07:40 +000015 // 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 Condona3ad7792020-01-04 19:26:34 +000020 "types": [],
21 "paths": {
Sean Condon3dd062f2020-04-14 09:25:00 +010022 "org_onosproject_onos/*": ["*"]
Sean Condona3ad7792020-01-04 19:26:34 +000023 }
Sean Condondfc6dba2019-11-09 11:50:23 +000024 }
25}