onos/web/gui2/tsconfig.json
Sean Condon 3dd062fb14 GUI2 Change gui2-fw-lib refs to abs paths
Change-Id: Iddc121c70ddf9fa69c8d9f99e9768de6c2143eab
2020-04-14 09:29:28 +01:00

26 lines
644 B
JSON

{
"compilerOptions": {
// Allow uses of these JS APIs
"lib": [
"dom",
"es5",
"es2015.collection",
"es2015.iterable",
"es2015.promise",
"es2017",
"es2017.object"
],
"emitDecoratorMetadata": true,
"target": "es6",
// Don't scan the node_modules/@types folder for ambient types.
// This would force us to have all the types in the dependencies of
// each library.
// Instead we'll be explicit about declaring ambient type dependencies
// using the ///<reference types=""/> syntax.
"types": [],
"paths": {
"org_onosproject_onos/*": ["*"]
}
}
}