watcher-ts/packages/watcher/ormconfig.json
2021-05-31 16:24:45 +05:30

20 lines
397 B
JSON

{
"type": "sqlite",
"database": "out/indexer.db",
"synchronize": true,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"entitiesDir": "src/entity",
"migrationsDir": "src/migration",
"subscribersDir": "src/subscriber"
}
}