AFFiNE/packages/component/tsconfig.json

31 lines
521 B
JSON
Raw Normal View History

{
2023-02-18 05:08:52 +03:00
"extends": "../../tsconfig.json",
"exclude": ["lib"],
"include": ["./src/**/*", "./src/**/*.json"],
"compilerOptions": {
"composite": true,
"noEmit": false,
"outDir": "lib",
"types": ["@affine/env"]
},
"references": [
{
"path": "../debug"
},
{
"path": "../i18n"
},
{
"path": "../jotai"
},
{
"path": "../hooks"
},
{
2023-06-09 11:43:46 +03:00
"path": "../plugin-infra"
},
2023-06-09 11:43:46 +03:00
{ "path": "../workspace" },
{ "path": "../../tests/fixtures" }
]
}