refactor: project into monorepo

This commit is contained in:
Aleksi Lassila
2025-08-09 13:39:48 +03:00
parent b28f3be8b7
commit d831c59647
335 changed files with 25170 additions and 7846 deletions

21
shared/tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"outDir": "./dist",
"baseUrl": "./",
"target": "ES2021",
"sourceMap": true,
"incremental": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": false,
"lib": ["es6"],
"resolveJsonModule": true
},
"include": ["src/**/*.ts", "package.json"]
}