chore: simplify tsconfig.json (#1108)

This commit is contained in:
Himself65
2023-02-17 20:08:52 -06:00
committed by GitHub
parent 4647d44972
commit 5f0015f522
7 changed files with 35 additions and 139 deletions
+24 -5
View File
@@ -17,17 +17,36 @@
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"@affine/component": ["packages/component/src/index"],
"@affine/datacenter": ["packages/datacenter/src"],
"@affine/i18n": ["packages/i18n/src"],
"@affine/logger": ["packages/logger/src"]
"@affine/component": ["./packages/component/src/index"],
"@affine/datacenter": ["./packages/datacenter/src"],
"@affine/i18n": ["./packages/i18n/src"],
"@affine/logger": ["./packages/logger/src"],
"@toeverything/pathfinder-logger": ["./packages/logger"]
}
},
"references": [
{
"path": "./tests"
},
{
"path": "./apps/web"
},
{
"path": "./apps/desktop"
},
{
"path": "./packages/data-center"
},
{
"path": "./packages/component"
},
{
"path": "./packages/i18n"
},
{
"path": "./packages/logger"
}
],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"files": [],
"exclude": ["node_modules"]
}