- Update ENTRYPOINT to run dist/src/index.js instead of dist/index.js
- Ensure /data directory exists for SQLite database creation - Remove unnecessary config files from final image
This commit is contained in:
parent
20e914c85b
commit
3b99c79495
3 changed files with 15 additions and 7 deletions
|
|
@ -5,8 +5,9 @@
|
|||
"target": "ES2021",
|
||||
"moduleResolution": "bundler",
|
||||
"moduleDetection": "force",
|
||||
"allowImportingTsExtensions": true,
|
||||
"noEmit": true,
|
||||
// "allowImportingTsExtensions": true,
|
||||
"outDir": "dist",
|
||||
"noEmit": false,
|
||||
"composite": true,
|
||||
"strict": true,
|
||||
"downlevelIteration": true,
|
||||
|
|
@ -24,7 +25,10 @@
|
|||
// "noUnusedParameters": true,
|
||||
"exactOptionalPropertyTypes": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noImplicitOverride": true
|
||||
"noImplicitOverride": true,
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true
|
||||
// "noImplicitReturns": true
|
||||
}
|
||||
},
|
||||
"include": ["src", "package.json"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue