AFFiNE/packages/component/tsconfig.json

30 lines
484 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,
2023-08-05 03:00:36 +03:00
"outDir": "lib"
},
"references": [
{
"path": "../debug"
},
{
"path": "../i18n"
},
{
"path": "../jotai"
},
{
"path": "../hooks"
},
{
"path": "../infra"
},
2023-06-09 11:43:46 +03:00
{ "path": "../workspace" },
{ "path": "../../tests/fixtures" }
]
}