mirror of
https://github.com/elastic/kibana.git
synced 2025-04-20 16:03:20 -04:00
* Move src/legacy/server/saved_objects -> src/core/server/saved_objects * Fix SavedObject import references after moving files to core * First pass at SavedObjects api docs * Expose and import all saved object types through core/server * Don't expose SavedObjectsManagement from core and fix imports * Improve typings for SavedObject error helpers * Fix type errors after master merge * Fix SavedObjectErrorHelpers tests
15 lines
309 B
JSON
15 lines
309 B
JSON
{
|
|
"extends": "./tsconfig",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "./target/types",
|
|
"stripInternal": false,
|
|
"emitDeclarationOnly": true,
|
|
"declarationMap": true
|
|
},
|
|
"include": [
|
|
"src/core/server/index.ts",
|
|
"src/core/public/index.ts",
|
|
"typings"
|
|
]
|
|
}
|