Implement Turbo Workspaces, among other things

This commit is contained in:
Amruth Pillai
2022-08-21 22:18:12 +02:00
parent 73af4a6859
commit 0630369087
35 changed files with 569 additions and 50703 deletions
+15 -15
View File
@@ -3,33 +3,33 @@
"exclude": ["dist"],
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"sourceMap": true,
"declaration": true,
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"removeComments": true,
"strictNullChecks": false,
"resolveJsonModule": true,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noFallthroughCasesInSwitch": false,
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": false,
"paths": {
"@/auth/*": ["src/auth/*"],
"@/config/*": ["src/config/*"],
"@/constants/*": ["src/constants/*"],
"@/database/*": ["src/database/*"],
"@/decorators/*": ["src/decorators/*"],
"@/filters/*": ["src/filters/*"],
"@/mail/*": ["src/mail/*"],
"@/users/*": ["src/users/*"],
"@/config/*": ["src/config/*"],
"@/resume/*": ["src/resume/*"],
"@/users/*": ["src/users/*"]
"@/filters/*": ["src/filters/*"],
"@/database/*": ["src/database/*"],
"@/constants/*": ["src/constants/*"],
"@/decorators/*": ["src/decorators/*"]
}
}
}