chore: add monorepo tools (#9196)

This commit is contained in:
liuyi
2024-12-24 15:29:48 +08:00
committed by GitHub
parent e3a8b63e38
commit 2443935830
116 changed files with 9390 additions and 1466 deletions
+7 -6
View File
@@ -2,11 +2,12 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"allowJs": true,
"module": "ESNext",
"moduleResolution": "Node",
"outDir": "lib"
"rootDir": "./src",
"outDir": "./dist"
},
"include": ["src", "package.json"],
"references": [{ "path": "../../packages/common/env" }]
"include": ["./src"],
"references": [
{ "path": "../../packages/common/env" },
{ "path": "../utils" }
]
}