mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-25 11:11:47 +01:00
26 lines
644 B
JSON
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/*": ["*"]
|
|
}
|
|
}
|
|
}
|