feat: basic api server

This commit is contained in:
Acbox
2026-01-10 20:17:02 +08:00
parent 28aa28e5bb
commit e60c0bb0d7
31 changed files with 1421 additions and 7 deletions
+7 -3
View File
@@ -27,7 +27,7 @@
/* Modules */
"module": "ES2022", /* Specify what module code is generated. */
// "rootDir": "./", /* Specify the root folder within your source files. */
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
"moduleResolution": "Bundler", /* Specify how TypeScript looks up a file from a given module specifier. */
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
@@ -98,6 +98,10 @@
/* Completeness */
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
}
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"paths": {
"@/*": ["./src/*"]
},
},
"include": ["src/**/*", "src/**/**/*"]
}