You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps to reproduce or a small repository showing the problem:
I have a backend app using TypeORM. Lately I've upgraded Deno to latest version, and bump TypeORM to v0.2.23-rc10. But when trying to run the app I got following errors:
Check file:///Users/q/Projects/qp-www-all/backend/main.ts
error: TS2339 [ERROR]: Property 'getIterator' does not exist on type 'ReadableStream<R>'.
return res.readable.getIterator();
~~~~~~~~~~~
at https://deno.land/[email protected]/async/pool.ts:45:23
TS2612 [ERROR]: Property 'manager' will overwrite the base property in 'Repository<Entity>'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration.
readonly manager!: MongoEntityManager;
~~~~~~~
at https://deno.land/x/[email protected]/src/repository/MongoRepository.ts:51:14
TS2612 [ERROR]: Property 'databaseConnection' will overwrite the base property in 'BaseQueryRunner'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration.
protected databaseConnection!: PoolClient;
~~~~~~~~~~~~~~~~~~
at https://deno.land/x/[email protected]/src/driver/postgres/PostgresQueryRunner.ts:57:15
TS2612 [ERROR]: Property 'databaseConnection' will overwrite the base property in 'BaseQueryRunner'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration.
protected databaseConnection!: [Connection, () => Promise<void>];
~~~~~~~~~~~~~~~~~~
at https://deno.land/x/[email protected]/src/driver/mysql/MysqlQueryRunner.ts:54:15
TS2612 [ERROR]: Property 'options' will overwrite the base property in 'AbstractSqliteDriver'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration.
options!: SqljsConnectionOptions;
~~~~~~~
at https://deno.land/x/[email protected]/src/driver/sqljs/SqljsDriver.ts:23:5
TS2612 [ERROR]: Property 'databaseConnection' will overwrite the base property in 'AbstractSqliteDriver'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration.
databaseConnection!: DB;
~~~~~~~~~~~~~~~~~~
at https://deno.land/x/[email protected]/src/driver/sqlite/SqliteDriver.ts:29:5
TS2612 [ERROR]: Property 'sqlite' will overwrite the base property in 'AbstractSqliteDriver'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration.
sqlite!: DenoSqlite;
~~~~~~
at https://deno.land/x/[email protected]/src/driver/sqlite/SqliteDriver.ts:31:5
Found 7 errors.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
The text was updated successfully, but these errors were encountered:
Issue type:
[ ] question
[x] bug report
[ ] feature request
[ ] documentation issue
Database system/driver:
[ ]
cordova
[x]
mongodb
[ ]
mssql
[ ]
mysql
/mariadb
[ ]
oracle
[x]
postgres
[ ]
cockroachdb
[x]
sqlite
[x]
sqljs
[ ]
react-native
[ ]
expo
TypeORM version:
[ ]
latest
[ ]
@next
[x]
0.2.23-rc10
Deno version:
Steps to reproduce or a small repository showing the problem:
I have a backend app using TypeORM. Lately I've upgraded Deno to latest version, and bump TypeORM to
v0.2.23-rc10
. But when trying to run the app I got following errors:The text was updated successfully, but these errors were encountered: