We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cf5d83 commit 4373e43Copy full SHA for 4373e43
2 files changed
handwritten/datastore/test/request.ts
@@ -120,7 +120,8 @@ describe('Request', () => {
120
121
it('should format an entity', () => {
122
const key = {};
123
- const entityObject = {data: true};
+ // tslint:disable-next-line:no-any
124
+ const entityObject: any = {data: true};
125
entityObject[entity.KEY_SYMBOL] = key;
126
const preparedEntityObject =
127
Request.prepareEntityObject_(entityObject) as Any;
handwritten/datastore/tsconfig.json
@@ -2,8 +2,7 @@
2
"extends": "./node_modules/gts/tsconfig-google.json",
3
"compilerOptions": {
4
"rootDir": ".",
5
- "outDir": "build",
6
- "noImplicitAny": false
+ "outDir": "build"
7
},
8
"include": [
9
"src/*.ts",
0 commit comments