kibana/packages/kbn-interpreter/tsconfig.json

22 lines
430 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.bazel.json",
"compilerOptions": {
"allowJs": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"outDir": "./target_types",
"rootDir": "src",
"sourceMap": true,
"sourceRoot": "../../../../packages/kbn-interpreter/src",
"stripInternal": true,
"types": [
"jest",
"node"
]
},
"include": [
"src/**/*",
]
}