mirror of
https://github.com/labring/laf.git
synced 2026-01-25 16:07:45 +00:00
* feat: function deploy * feat: add file upload * update: edit bucket modal * refactor: react query best practice * fix: add nextjs env viriable & fix next build errors * fix: build error, change pnpm to npm * refactor: remove next, change to vite * refactor: add i18n support * fix: update services code * impl runtime log (#535) * fix(server): fix oss external endpoint in env Signed-off-by: maslow <wangfugen@126.com> * feat(runtime): implement func logging in node runtime Signed-off-by: maslow <wangfugen@126.com> Signed-off-by: maslow <wangfugen@126.com> * chore: update readme & changelog (#536) Signed-off-by: maslow <wangfugen@126.com> * fix(core): fix gateway bucket name issue & minio deploy domain config (#537) Signed-off-by: maslow <wangfugen@126.com> * fix: add code update, storage mana * feat: add database mana * fix(runtime): impv runtime logging struct; add func logs api (#538) Signed-off-by: maslow <wangfugen@126.com> * refactor(server): add log module (#539) Signed-off-by: maslow <wangfugen@126.com> Co-authored-by: maslow <wangfugen@126.com>
28 lines
721 B
JSON
28 lines
721 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"types": ["node"],
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "apis/v1/api-auto.d.ts", "public/locales"],
|
|
"references": [{ "path": "./tsconfig.node.json" }],
|
|
"exclude": ["node_modules"]
|
|
}
|