init monorepo

This commit is contained in:
aric jean
2026-03-23 07:09:31 +08:00
parent 9f0c2e7c61
commit 16219ec7f1
657 changed files with 124939 additions and 1 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022", "DOM"],
"declaration": true,
"sourceMap": true,
"composite": true, // 开启增量编译,利于 Monorepo 性能
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@nest-pure/shared": ["packages/shared/src/index.ts"]
}
},
"exclude": ["node_modules", "dist"]
}