贝洛(Below)有详细信息,尝试了多个更新,仍然没有运气 用VS代码工作,但在GCP -Cloud运行 package.json
{
"name": "whatsappendpoint-test2",
"type" : "module",
"engines": {
"node": ">=14.0.0"
},
"version": "0.0.1",
"dependencies": {
"@google-cloud/functions-framework": "^3.0.0"
}
}
代码
export function test(req, res) {
import {MY_CONST} from './consts.js';
console.log(test)
res.send('Hello world');
};
构建错误
Running "node --check index.js"enter code here
/workspace/index.js:4
import {MY_CONST} from './consts.js'
^
SyntaxError: Unexpected token '{'
at checkSyntax (node:internal/main/check_syntax:74:5)
Node.js v22.14.0