add client

This commit is contained in:
wzdwc
2020-04-14 22:20:02 +08:00
parent 32dd3302f8
commit d98223a6c6
80 changed files with 8461 additions and 20 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"compileOnSave": true,
"compilerOptions": {
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"module": "commonjs",
"newLine": "lf",
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"outDir": "dist",
"pretty": true,
"skipLibCheck": true,
"strict": true,
"strictPropertyInitialization": false,
"stripInternal": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"target": "ES2018"
},
"exclude": [
"app/public",
"app/views",
"dist",
"node_modules*",
"test",
"**/*.d.ts",
"**/*.spec.ts"
]
}