@remit/backend 0.0.47 → 0.0.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tsconfig.json +1 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/backend",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
4
4
  "description": "Remit Mail Inspector API backend",
5
5
  "license": "MIT",
6
6
  "author": "",
package/tsconfig.json CHANGED
@@ -3,16 +3,5 @@
3
3
  "compilerOptions": {
4
4
  "outDir": "dist"
5
5
  },
6
- "include": [
7
- "src/**/*.ts",
8
- "dev-server/**/*.ts",
9
- "scripts/**/*.ts",
10
- // The backend image's third entrypoint. `migrate.mjs` and
11
- // `backfill-list-id.mjs` ship inside this image alongside `server.mjs`
12
- // (npm-scripts/docker-bundle.mjs), so they belong to the same typecheck —
13
- // living under deploy/ is where it sits in the tree, not a different
14
- // deliverable. Unchecked, it shipped a container entrypoint with two hard
15
- // type errors.
16
- "../../deploy/vps/migrate/**/*.ts"
17
- ]
6
+ "include": ["src/**/*.ts", "dev-server/**/*.ts", "scripts/**/*.ts"]
18
7
  }