mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-11-30 10:47:41 +08:00
7ef31d99e2
* stash * stash inceptor * feat: request success * fix: resolve conflict * fix: resolve conflict * fix: resolve conflict * fix: style * feat: add about page * test * feat: response http interceptor * stash * feat: basic data * feat:add api * fix: path error * feat: connect mock api * update code * fix: code conflict * Delete package-lock.json * update yarn * test * 暂存 * 暂存 * 暂存 * update code * update code * update code * update code * update code * update code * update code * feat: remote x-api-key token * 隐藏mock * update code * fix: api headers judge error * fix: lack http batch remove api * fix some style issue * update code * fix code conflict * fix some thing * fix: lack sort api&group * fix packing * update code Co-authored-by: buqiyuan <1743369777@qq.com>
49 lines
889 B
JSON
49 lines
889 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"module": "commonjs",
|
|
"outDir": "./out",
|
|
"rootDir": "./src",
|
|
"target": "es6",
|
|
"types": [
|
|
"node"
|
|
],
|
|
"lib": [
|
|
"es2017",
|
|
"es2016",
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"eo/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/**.ts",
|
|
"./src/**/**.js",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"**/browser/**/*.js",
|
|
"**/browser/**/*.ts",
|
|
"out"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"enableIvy": true
|
|
}
|
|
}
|