project init

This commit is contained in:
zhangyiming
2020-11-16 14:10:17 +08:00
parent 721b84824c
commit 58f3fcbaf3
41 changed files with 6922 additions and 0 deletions

18
backend/tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"pretty": true,
"sourceMap": true,
"target": "es6",
"outDir": "./dist",
"baseUrl": "./lib"
},
"include": [
"src/**/*.ts", "src/router/api/user.js"
],
"exclude": [
"node_modules",
"dist"
]
}