daml-ledger.ts: Fix build and lint config (#4215)

CHANGELOG_BEGIN
CHANGELOG_END
This commit is contained in:
Martin Huschenbett 2020-01-27 11:11:16 +01:00 committed by mergify[bot]
parent 3c93b5e6c9
commit 68b938d1b4
2 changed files with 5 additions and 5 deletions

View File

@ -37,7 +37,10 @@ genrule(
eslint_test(
name = "lint",
srcs = glob(["**/*.ts"]),
srcs = glob(
["**/*.ts"],
exclude = ["lib/**/*"],
),
)
pkg_npm(

View File

@ -15,8 +15,5 @@
"declaration": true,
"sourceMap": true
},
"include": [
"**/*.ts",
"lib/**/*"
]
"files": ["index.ts"]
}