mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
* configure typescript build, add necessary dependencies, change extensions, react migration * migrate lib files in root * update tests snapshots, resolve core loader, helper * fix types for core components * fix angular components * fix angular staff * use Messages type * first-upper-case letter while using classs * use stable latest babel, fix ts issues * optimize .babelrc * update lock file * Fix x-pack/yarn.lock * fix issue with unknown babel plugin * add babel-config.js file with babel configuration for i18n engine build process instead of .babelrc file to fix jest issue * Resolve comments * Fix babel config * Fix packages incompatibility issue * Fix tslint errors * Fix tests * Resolve comments * Fix types
16 lines
297 B
JSON
16 lines
297 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"types/intl_format_cache.d.ts",
|
|
"types/intl_relativeformat.d.ts"
|
|
],
|
|
"exclude": [
|
|
"target"
|
|
],
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "./target/types",
|
|
}
|
|
}
|