wip: xhr proxy can run

This commit is contained in:
daief
2020-11-29 17:57:09 +08:00
parent a6e2324e53
commit 75625a7bef
13 changed files with 904 additions and 4 deletions

25
tsconfig.json Normal file
View File

@@ -0,0 +1,25 @@
{
"compilerOptions": {
"target": "ES2015",
"module": "ESNext",
"removeComments": false,
"moduleResolution": "node",
"experimentalDecorators": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"rootDir": ".",
"allowJs": true,
"resolveJsonModule": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "dist"],
"compileOnSave": false
}