AFFiNE/packages/frontend/electron/renderer/tsconfig.json

30 lines
544 B
JSON
Raw Normal View History

{
"extends": "../../../../tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ESNext",
"module": "ESNext",
"resolveJsonModule": true,
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"noEmit": false,
"outDir": "../lib",
"allowJs": true
},
"references": [
{
"path": "../../../common/env"
},
{
"path": "../../core"
},
{
"path": "../../component"
},
{
"path": "../../../common/infra"
}
],
"include": ["."]
}