Skip to content

Commit b348a4c

Browse files
committed
fix deps
1 parent e8d786a commit b348a4c

File tree

6 files changed

+4
-20
lines changed

6 files changed

+4
-20
lines changed

package-lock.json

Lines changed: 0 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@
108108
"nyc": "17.1.0",
109109
"prettier": "2.0.5",
110110
"semantic-release": "24.2.1",
111-
"tsc": "2.0.4",
112111
"typescript": "^5.7.3",
113112
"yaml": "2.6.1"
114113
},

src/Adapters/Files/FilesAdapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class FilesAdapter {
6868
* @return {string | Promise<string>} Absolute URL
6969
*/
7070
getFileLocation(config: Config, filename: string): string | Promise<string> {
71-
return Promise.resolve();
71+
return '';
7272
}
7373

7474
/** Validate a filename for this adapter type

src/Adapters/Storage/StorageAdapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export type UpdateQueryOptions = {
2828

2929
export type FullQueryOptions = QueryOptions & UpdateQueryOptions;
3030

31-
export class StorageAdapter {
31+
export interface StorageAdapter {
3232
canSortOnJoinTables: boolean;
3333
schemaCacheTtl?: number;
3434
enableSchemaHooks: boolean;
File renamed without changes.

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"emitDeclarationOnly": true,
55
"outDir": "types",
66
"noImplicitAny": false,
7-
"allowJs": false
7+
"allowJs": false,
8+
"skipLibCheck": true
89
},
910
"include": [
1011
"src/*.ts"

0 commit comments

Comments
 (0)