Skip to content

Commit

Permalink
chore(NA): include souce maps on kbn-crypto, kbn-server-http-tools an…
Browse files Browse the repository at this point in the history
…d kbn-telemetry-tools
  • Loading branch information
mistic committed Mar 30, 2021
1 parent 2ae87d6 commit 1639661
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 9 deletions.
1 change: 1 addition & 0 deletions packages/kbn-crypto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"license": "SSPL-1.0 OR Elastic License 2.0",
"main": "./target/index.js",
"types": "./target/index.d.ts",
"scripts": {
"build": "../../node_modules/.bin/tsc",
"kbn:bootstrap": "yarn build",
Expand Down
7 changes: 5 additions & 2 deletions packages/kbn-crypto/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "target",
"incremental": false,
"outDir": "./target",
"declaration": true,
"declarationMap": true
"declarationMap": true,
"sourceMap": true,
"sourceRoot": "../../../../packages/kbn-crypto/src"
},
"include": [
"src/**/*"
Expand Down
1 change: 1 addition & 0 deletions packages/kbn-server-http-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@kbn/server-http-tools",
"main": "./target/index.js",
"types": "./target/index.d.ts",
"version": "1.0.0",
"license": "SSPL-1.0 OR Elastic License 2.0",
"private": true,
Expand Down
12 changes: 6 additions & 6 deletions packages/kbn-server-http-tools/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "target",
"incremental": false,
"outDir": "./target",
"declaration": true,
"declarationMap": true
"declarationMap": true,
"sourceMap": true,
"sourceRoot": "../../../../packages/kbn-server-http-tools/src"
},
"include": [
"src/**/*"
],
"dependencies": {
"@kbn/std": "link:../kbn-std"
}
]
}
1 change: 1 addition & 0 deletions packages/kbn-telemetry-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"license": "SSPL-1.0 OR Elastic License 2.0",
"main": "./target/index.js",
"types": "./target/index.d.ts",
"private": true,
"kibana": {
"devOnly": true
Expand Down
7 changes: 6 additions & 1 deletion packages/kbn-telemetry-tools/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"tsBuildInfoFile": "../../build/tsbuildinfo/packages/kbn-telemetry-tools"
"incremental": false,
"outDir": "./target",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"sourceRoot": "../../../../packages/kbn-telemetry-tools/src"
},
"include": [
"src/**/*",
Expand Down

0 comments on commit 1639661

Please sign in to comment.