add typeRoots
to the tsconfig.json
within the functions folder
{
"compilerOptions": {
"module": "commonjs",
"noImplicitReturns": true,
"noUnusedLocals": true,
"outDir": "lib",
"sourceMap": true,
"strict": true,
"target": "es2017",
"typeRoots": [
"./functions/node_modules/@types"
],
},
"compileOnSave": true,
"include": [
"src"
],
}
check out this Github issues
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…