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

19
tsconfig.base.json Normal file
View file

@ -0,0 +1,19 @@
{
"compilerOptions": {
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "esnext",
"lib": ["es2023"],
"resolveJsonModule": true,
"esModuleInterop": true,
"sourceMap": true,
"alwaysStrict": true,
"noImplicitThis": true,
"skipLibCheck": true,
"strict": true,
"strictPropertyInitialization": false,
"useUnknownInCatchVariables": false
}
}