- Converted all .js files to .ts - Added TypeScript configuration (tsconfig.json) - Added ESLint and Prettier configuration - Updated package.json dependencies - Modified Docker and application configurations
22 lines
252 B
Plaintext
22 lines
252 B
Plaintext
# Ignore artifacts:
|
|
node_modules
|
|
dist
|
|
coverage
|
|
data
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
|
|
# Ignore configuration files managed by other tools:
|
|
package-lock.json
|
|
pnpm-lock.yaml
|
|
yarn.lock
|
|
|
|
# Ignore logs:
|
|
logs
|
|
*.log
|
|
|
|
# Ignore environment files:
|
|
.env*
|
|
!.env.example
|