kibana/x-pack/plugins/translations/tsconfig.json
Nathan L Smith d53f832f16
TS project references for translations plugin (#88022)
Observability has this as a dependency, so adding TS project references in service of that.
2021-01-12 15:07:27 -06:00

13 lines
364 B
JSON

{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"outDir": "./target/types",
"emitDeclarationOnly": true,
"declaration": true,
"declarationMap": true
},
"include": ["server/**/*", "translations/ja-JP.json", "translations/zh-CN.json"],
"references": [{ "path": "../../../src/core/tsconfig.json" }]
}