@palbase/backend 24.0.1 → 24.0.2
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.
- package/dist/bin/palbase-backend.cjs +14 -9
- package/dist/bin/palbase-backend.cjs.map +1 -1
- package/dist/bin/palbase-backend.js +1 -1
- package/dist/{chunk-YSQBC2VL.js → chunk-RPZNHY7J.js} +15 -10
- package/dist/{chunk-YSQBC2VL.js.map → chunk-RPZNHY7J.js.map} +1 -1
- package/dist/engine/index.cjs +14 -9
- package/dist/engine/index.cjs.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/template/tsconfig.json +6 -0
package/dist/engine/index.js
CHANGED
package/package.json
CHANGED
package/template/tsconfig.json
CHANGED
|
@@ -35,6 +35,12 @@
|
|
|
35
35
|
"hooks/**/*.ts",
|
|
36
36
|
"webhooks/**/*.ts",
|
|
37
37
|
"middleware/**/*.ts",
|
|
38
|
+
// Project-root files the deploy path evaluates: `auth.ts` (the application
|
|
39
|
+
// default the bundler imports by name), and anything else a future seam
|
|
40
|
+
// adds beside it. Without this line that file is type-checked by NOTHING —
|
|
41
|
+
// a typo in `defineDefaultAuth({ verifedEmail: true })` compiles, builds,
|
|
42
|
+
// deploys, and resolves to a spec the cascade does not recognise.
|
|
43
|
+
"*.ts",
|
|
38
44
|
"*.d.ts"
|
|
39
45
|
]
|
|
40
46
|
}
|