AFFiNE/packages/component/tsconfig.json
Alex Yang 5496969e58
refactor: environment setup (#2898)
Co-authored-by: Simon He <57086651+Simon-He95@users.noreply.github.com>
2023-06-28 11:19:19 +00:00

31 lines
521 B
JSON

{
"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"
},
{
"path": "../plugin-infra"
},
{ "path": "../workspace" },
{ "path": "../../tests/fixtures" }
]
}