refactor: use npm workspaces and ts project references

This commit is contained in:
Dragory 2024-03-02 09:24:07 +00:00
parent ffa9eeb3f5
commit 7cd56303fc
No known key found for this signature in database
30 changed files with 20303 additions and 24327 deletions

View file

@ -1,13 +1,16 @@
{
"extends": "../tsconfig.json",
"extends": "../tsconfig.base.json",
"compilerOptions": {
"moduleResolution": "NodeNext",
"module": "NodeNext",
"baseUrl": ".",
"outDir": "./dist",
"paths": {
"@shared/*": ["../shared/src/*"]
}
"baseUrl": "./src",
"rootDir": "./src",
"outDir": "./dist"
},
"include": ["src/**/*.ts"]
"include": ["src/**/*.ts", "src/**/*.json"],
"references": [
{
"path": "../shared/tsconfig.json"
}
]
}