laf/web/tsconfig.json
leezq 9782423064
feat(web): impl db crud; impl file crud; (#542)
* 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>
2022-12-14 22:18:38 +08:00

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"]
}