mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-21 01:12:04 +03:00
70633d0d16
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@blocksuite/affine](https://redirect.github.com/toeverything/blocksuite) ([source](https://redirect.github.com/toeverything/blocksuite/tree/HEAD/packages/affine/all), [changelog](https://redirect.github.com/toeverything/blocksuite/blob/master/packages/blocks/CHANGELOG.md)) | [`0.17.33` -> `0.18.0`](https://renovatebot.com/diffs/npm/@blocksuite%2faffine/0.17.33/0.18.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@blocksuite%2faffine/0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@blocksuite%2faffine/0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@blocksuite%2faffine/0.17.33/0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@blocksuite%2faffine/0.17.33/0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>toeverything/blocksuite (@​blocksuite/affine)</summary> ### [`v0.18.0`](https://redirect.github.com/toeverything/blocksuite/blob/HEAD/packages/affine/all/CHANGELOG.md#0180) [Compare Source](https://redirect.github.com/toeverything/blocksuite/compare/v0.17.33...v0.18.0) ##### Minor Changes - [`9daa1f3`](https://redirect.github.com/toeverything/blocksuite/commit/9daa1f3): ## Feat - feat(blocks): markdown adapter reference serialization and deserialization ([#​8782](https://redirect.github.com/toeverything/blocksuite/issues/8782)) - feat(blocks): add lazy loading to image and iframe ([#​8773](https://redirect.github.com/toeverything/blocksuite/issues/8773)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/toeverything/AFFiNE). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzkuMTkuMCIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
188 lines
4.9 KiB
JSON
188 lines
4.9 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": true,
|
|
// Classification follows https://www.typescriptlang.org/tsconfig
|
|
// Type Checking
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"useUnknownInCatchVariables": true,
|
|
// Modules
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"types": ["affine__env"],
|
|
// Emit
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
// skip type emit for @internal types
|
|
// "stripInternal": true,
|
|
// JavaScript Support
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
// Interop Constraints
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
// Language and Environment
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "@emotion/react",
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": false,
|
|
"experimentalDecorators": false,
|
|
"emitDecoratorMetadata": false,
|
|
// Projects
|
|
"composite": true,
|
|
"incremental": true,
|
|
// Completeness
|
|
"skipLibCheck": true, // skip all type checks for .d.ts files
|
|
"paths": {
|
|
"@affine/core/*": ["./packages/frontend/core/src/*"],
|
|
"@affine/admin/*": ["./packages/frontend/admin/src/*"],
|
|
"@affine/admin/components/ui/*": [
|
|
"./packages/frontend/admin/src/components/ui/*"
|
|
],
|
|
"@affine/cli/*": ["./tools/cli/src/*"],
|
|
"@affine/server/*": ["./packages/backend/server/src/*"],
|
|
"@affine/component": ["./packages/frontend/component/src/index"],
|
|
"@affine/component/*": [
|
|
"./packages/frontend/component/src/components/*/index",
|
|
"./packages/frontend/component/src/components/*"
|
|
],
|
|
"@affine/i18n": ["./packages/frontend/i18n/src"],
|
|
"@affine/debug": ["./packages/common/debug"],
|
|
"@affine/env": ["./packages/common/env/src"],
|
|
"@affine/env/*": ["./packages/common/env/src/*"],
|
|
"@affine/graphql": ["./packages/frontend/graphql/src"],
|
|
"@affine/electron/scripts/*": ["./packages/frontend/electron/scripts/*"],
|
|
"@affine-test/kit/*": ["./tests/kit/*"],
|
|
"@affine-test/fixtures/*": ["./tests/fixtures/*"],
|
|
"@toeverything/infra": ["./packages/common/infra/src"],
|
|
"@affine/native": ["./packages/frontend/native/index.d.ts"],
|
|
"@affine/native/*": ["./packages/frontend/native/*"],
|
|
"@affine/server-native": ["./packages/backend/native/index.d.ts"],
|
|
// Development only
|
|
"@affine/electron/*": ["./packages/frontend/apps/electron/src/*"],
|
|
"@affine/nbstore": ["./packages/common/nbstore/src"]
|
|
}
|
|
},
|
|
"include": [],
|
|
"references": [
|
|
// Backend
|
|
{
|
|
"path": "./packages/backend/server"
|
|
},
|
|
{
|
|
"path": "./packages/backend/server/tests"
|
|
},
|
|
// Frontend
|
|
{
|
|
"path": "./packages/frontend/admin"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/component"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/core"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/track"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/apps/web"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/apps/mobile"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/apps/ios"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/apps/android"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/apps/electron/tsconfig.test.json"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/apps/electron/renderer/tsconfig.json"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/graphql"
|
|
},
|
|
{
|
|
"path": "./packages/frontend/i18n"
|
|
},
|
|
// Common
|
|
{
|
|
"path": "./packages/common/debug"
|
|
},
|
|
{
|
|
"path": "./packages/common/env"
|
|
},
|
|
{
|
|
"path": "./packages/common/infra"
|
|
},
|
|
{
|
|
"path": "./packages/common/nbstore"
|
|
},
|
|
// Tools
|
|
{
|
|
"path": "./tools/cli"
|
|
},
|
|
{
|
|
"path": "./tools/playstore-auto-bump"
|
|
},
|
|
// Tests
|
|
{
|
|
"path": "./tests/kit"
|
|
},
|
|
{
|
|
"path": "./tests/affine-local"
|
|
},
|
|
{
|
|
"path": "./tests/affine-mobile"
|
|
},
|
|
{
|
|
"path": "./tests/affine-legacy/0.7.0-canary.18"
|
|
},
|
|
{
|
|
"path": "./tests/affine-legacy/0.8.0-canary.7"
|
|
},
|
|
{
|
|
"path": "./tests/affine-cloud"
|
|
},
|
|
{
|
|
"path": "./tests/affine-desktop"
|
|
},
|
|
{
|
|
"path": "./tests/affine-legacy/0.8.4"
|
|
},
|
|
{
|
|
"path": "./tests/affine-legacy/0.6.1-beta.1"
|
|
},
|
|
// Others
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
],
|
|
"files": [],
|
|
"exclude": ["node_modules", "target", "lib", "test-results", "dist"],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node"
|
|
}
|
|
}
|
|
}
|