我正在使用无服务器框架开发一些lambda函数。Serveless-Framework已在全球安装。
我正在使用Typescript和无服务器 - webpack。
我也在使用无服务器官能线在本地测试。
一切正常,除非我尝试从VSCODE内进行调试。问题是,一旦我启动无服务器从VSCODE的调试设施中开始,我所有的断点都会被弄清楚。
在这里我的配置文件
package.json
{
"name": "backend-serverless",
"version": "1.0.0",
"description": "serverless backend",
"main": "handler.js",
"scripts": {
"test": "mocha -r ts-node/register transform/src/**/*.spec.ts src/**/**/*.spec.ts",
"tsc": "tsc",
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "0.0.34",
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.0",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"serverless-offline": "^3.18.0",
"serverless-webpack": "^5.1.1",
"ts-loader": "^4.1.0",
"ts-node": "^5.0.1",
"typescript": "^2.7.2",
"webpack": "^4.3.0"
}
}
webpack.config.ts
const path = require('path');
const slsw = require('serverless-webpack');
module.exports = {
devtool: 'source-map',
entry: slsw.lib.entries,
resolve: {
extensions: [
'.js',
'.json',
'.ts',
'.tsx'
]
},
output: {
libraryTarget: 'commonjs',
path: path.join(__dirname, '.webpack'),
filename: '[name].js'
},
target: 'node',
module: {
rules: [
{
test: /.ts(x?)$/,
use: [
{
loader: 'ts-loader'
}
],
}
]
}
};
启动
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Current TS File",
"type": "node",
"request": "launch",
"args": ["${relativeFile}"],
"runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
"sourceMaps": true,
"cwd": "${workspaceRoot}",
"protocol": "inspector"
},
{
"type": "node",
"request": "launch",
"name": "Debug - Offline",
"program": "/usr/local/bin/serverless",
"args": [
"offline",
"start",
"--lazy"
],
"env": {
"NODE_ENV": "development"
},
"outFiles": [
"${cwd}/.webpack/**/*"
],
"sourceMaps": true,
"cwd": "${workspaceRoot}",
"protocol": "inspector"
}
]
}
tsconfig.json
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "dist",
"sourceMap": true
},
"include": [
"src/**/*.ts", "*.ts"
],
"exclude": [
"node_modules"
],
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2016",
"dom"
]
}
顺便说一句,如果我尝试使用Current TS File
启动配置在打字稿中编写的任何正常函数,我所有的断点都可以很好地工作。如果我使用Debug - Offline
启动配置,则所有断点都将灰色。
我相信这是vscode中的一个(最近引入(错误。
证据
我已经使用serverless-webpack
和serverless-offline
与Typescript Lambda功能使用了几个月。直到最近,与您的设置进行调试非常像您的设置从来都不是问题。
您描述的症状很容易通过由
创建的新项目来重现serverless create --template aws-nodejs-typescript
(加上两个插件(,使用最新的VSCODE(1.21.1(。
workaround
我不使用React Native,但是本期所述的解决方法对我有用。调试器启动后,所有断点均为灰色,添加一个新的断点或删除并重新添加现有断点。任何一个动作似乎都在"唤醒"调试器,而其他断点都绑定了。
最近引入了?
我将VSCODE滚回到1.18.1,问题消失了。然后,我进行了一系列升级,并确认1.19.3和1.20.1似乎也可以正常工作。
版本1.21.1似乎是唯一遭受此错误的疾病。因此,如果解决方案对您不起作用,或者您不想使用它,则回头回到VSCODE 1.20.1(或更早(可能会解决您的问题。
注释
我用于此设置的launch.json
配置非常小,通常看起来像这样:
{
"type": "node",
"request": "launch",
"name": "Debug API Gateway",
"program": "${workspaceFolder}/node_modules/serverless/bin/serverless",
"args": [
"offline",
"start"
]
}
这种配置一直对我有用;我从来不必指定outFiles
或sourceMaps
之类的内容来与Typescript,serverless-offline
和serverless-webpack
一起调试。