Skip to content

Commit 7c831b1

Browse files
committed
squash! fix .d.ts files violating noImplicitAny
1 parent 18e6e27 commit 7c831b1

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

examples/todo/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"version": "1.5.1",
44
"description": "Tutorial example on how to build an application with LoopBack 4.",
55
"main": "index.js",
6-
"__types_comment": "FIXME(bajtos) use 'dist/index.d.ts' once we enable Project References",
7-
"types": "src/index.ts",
6+
"types": "dist/index.d.ts",
87
"engines": {
98
"node": ">=8.9"
109
},

packages/build/config/tsconfig.common.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"strictNullChecks": true,
88
"resolveJsonModule": true,
99
"strictBindCallApply": true,
10+
"skipLibCheck": true,
1011

1112
"lib": ["es2018", "dom", "esnext.asynciterable"],
1213
"module": "commonjs",

packages/cli/generators/project/templates/tsconfig.json.ejs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"noImplicitAny": true,
1616
"strictNullChecks": true,
1717
"resolveJsonModule": true,
18+
"skipLibCheck": true,
1819
1920
"lib": ["es2018", "dom", "esnext.asynciterable"],
2021
"module": "commonjs",

0 commit comments

Comments
 (0)