kibana/packages/kbn-i18n/tsconfig.json
Tiago Costa 4f754550e8
refact(NA): remove extra pkg_npm target and add specific target folders for @kbn/i18n on Bazel (#100271)
* refact(NA): remove extra pkg_npm target and add specific target folders on @kbn/i18n

* chore(NA): override the browser types
2021-05-18 17:49:23 -04:00

27 lines
550 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"incremental": true,
"declarationDir": "./target_types",
"outDir": "./target_node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"sourceRoot": "../../../../../packages/kbn-i18n/src",
"types": [
"jest",
"node"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"types/intl_format_cache.d.ts",
"types/intl_relativeformat.d.ts"
],
"exclude": [
"**/__fixtures__/**/*"
]
}