contrition/ormconfig.json

18 lines
283 B
JSON

{
"type": "sqlite",
"database": "./database.sqlite",
"synchronize": true,
"logging": [
"error",
"warn",
"info",
"log"
],
"logger": "file",
"entities": [
"src/entity/**/*.ts"
],
"cli": {
"entitiesDir": "src/entity"
}
}