@naturalcycles/backend-lib 5.12.0 → 5.14.0
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/cfg/tsconfig.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{
|
|
7
7
|
"compilerOptions": {
|
|
8
8
|
// Target/module
|
|
9
|
-
"target": "
|
|
9
|
+
"target": "es2023",
|
|
10
10
|
"lib": ["esnext"], // add "dom" if needed
|
|
11
11
|
// module `nodenext` is a modern mode that auto-detects cjs/esm
|
|
12
12
|
// it also defaults `esModuleInterop` and `allowSyntheticDefaultImports` to true
|
|
@@ -8,7 +8,7 @@ exports.validateGAEServiceName = validateGAEServiceName;
|
|
|
8
8
|
const js_lib_1 = require("@naturalcycles/js-lib");
|
|
9
9
|
const nodejs_lib_1 = require("@naturalcycles/nodejs-lib");
|
|
10
10
|
const APP_YAML_DEFAULT = () => ({
|
|
11
|
-
runtime: '
|
|
11
|
+
runtime: 'nodejs22',
|
|
12
12
|
service: 'default',
|
|
13
13
|
inbound_services: ['warmup'],
|
|
14
14
|
instance_class: 'F1',
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import { BackendCfg } from './backend.cfg.util'
|
|
|
4
4
|
import { AppYaml, DeployInfo } from './deploy.model'
|
|
5
5
|
|
|
6
6
|
const APP_YAML_DEFAULT = (): AppYaml => ({
|
|
7
|
-
runtime: '
|
|
7
|
+
runtime: 'nodejs22',
|
|
8
8
|
service: 'default',
|
|
9
9
|
inbound_services: ['warmup'],
|
|
10
10
|
instance_class: 'F1',
|