添加 eggjs web-server,初步支持多宝短信

This commit is contained in:
liangtongchuan
2020-08-15 22:42:04 +08:00
parent 8ce0dc040f
commit 0458817b51
29 changed files with 11337 additions and 0 deletions

30
web-server/tsconfig.json Normal file
View File

@@ -0,0 +1,30 @@
{
"compileOnSave": true,
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"strict": true,
"noImplicitAny": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"charset": "utf8",
"allowJs": false,
"pretty": true,
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"inlineSourceMap": true,
"importHelpers": true
},
"exclude": [
"app/public",
"app/views",
"node_modules*"
]
}