Skip to content

Instantly share code, notes, and snippets.

@michaelpanik
Last active October 16, 2021 14:15
Show Gist options
  • Save michaelpanik/6f7856c1dca718b515c8783bebf06443 to your computer and use it in GitHub Desktop.
Save michaelpanik/6f7856c1dca718b515c8783bebf06443 to your computer and use it in GitHub Desktop.
Serverless TS API Talk - TS Config
{
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "test",
"password": "test",
"database": "test",
"synchronize": true,
"entities": [".build/src/**/*.entity.js"]
}
{
"compilerOptions": {
"preserveConstEnums": true,
"strictNullChecks": true,
"sourceMap": true,
"allowJs": true,
"target": "es5",
"outDir": ".build",
"moduleResolution": "node",
"lib": ["es2015"],
"rootDir": "./",
"emitDecoratorMetadata": true,
"experimentalDecorators": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment