From 62191a59108b469f67c1dbc0828ffca622d31035 Mon Sep 17 00:00:00 2001 From: Konstantin Tsabolov <1006564+tsabolov@users.noreply.github.com> Date: Wed, 22 Nov 2023 10:41:52 +0100 Subject: [PATCH] chore: fix NestJS/TypeScript setup for all services --- apps/attestation-manager/nest-cli.json | 4 +++- apps/attestation-manager/tsconfig.build.json | 10 ++++++++++ apps/attestation-manager/tsconfig.json | 15 --------------- apps/attestation-manager/tsconfig.production.json | 14 ++++++++++++++ apps/connection-manager/nest-cli.json | 4 +++- apps/connection-manager/tsconfig.build.json | 10 ++++++++++ apps/connection-manager/tsconfig.production.json | 14 ++++++++++++++ apps/proof-manager/nest-cli.json | 4 +++- apps/proof-manager/tsconfig.production.json | 14 ++++++++++++++ apps/ssi-abstraction/nest-cli.json | 8 +++++++- apps/ssi-abstraction/tsconfig.build.json | 10 ++++++++++ apps/ssi-abstraction/tsconfig.json | 12 ------------ apps/ssi-abstraction/tsconfig.production.json | 14 ++++++++++++++ 13 files changed, 102 insertions(+), 31 deletions(-) create mode 100644 apps/attestation-manager/tsconfig.production.json create mode 100644 apps/connection-manager/tsconfig.production.json create mode 100644 apps/proof-manager/tsconfig.production.json create mode 100644 apps/ssi-abstraction/tsconfig.production.json diff --git a/apps/attestation-manager/nest-cli.json b/apps/attestation-manager/nest-cli.json index 0a947a5..681ff0f 100644 --- a/apps/attestation-manager/nest-cli.json +++ b/apps/attestation-manager/nest-cli.json @@ -3,6 +3,8 @@ "sourceRoot": "src", "compilerOptions": { "builder": "swc", - "typeCheck": true + "typeCheck": true, + + "assets": ["**/*.prisma"] } } diff --git a/apps/attestation-manager/tsconfig.build.json b/apps/attestation-manager/tsconfig.build.json index 64f86c6..b7dacb2 100644 --- a/apps/attestation-manager/tsconfig.build.json +++ b/apps/attestation-manager/tsconfig.build.json @@ -1,4 +1,14 @@ { "extends": "./tsconfig.json", + "compilerOptions": { + "removeComments": false, + "declaration": true, + "sourceMap": true, + + "incremental": true, + "baseUrl": ".", + "outDir": "./dist", + "rootDir": "./src" + }, "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] } diff --git a/apps/attestation-manager/tsconfig.json b/apps/attestation-manager/tsconfig.json index a5a4ed0..6f83eb6 100644 --- a/apps/attestation-manager/tsconfig.json +++ b/apps/attestation-manager/tsconfig.json @@ -1,18 +1,3 @@ { "extends": "../../tsconfig.json", - - "compilerOptions": { - "composite": true, - "removeComments": false, - "declaration": true, - "sourceMap": true, - - "incremental": true, - - "outDir": "./dist", - "baseUrl": "./", - "rootDir": "./src" - }, - "include": ["src", "test"], - "exclude": ["node_modules", "./dist/**/*"] } diff --git a/apps/attestation-manager/tsconfig.production.json b/apps/attestation-manager/tsconfig.production.json new file mode 100644 index 0000000..0f476e0 --- /dev/null +++ b/apps/attestation-manager/tsconfig.production.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "composite": false, + "removeComments": true, + "declaration": false, + "sourceMap": false, + + "baseUrl": ".", + "outDir": "./dist", + "rootDir": "./src" + }, + "exclude": ["node_modules", "dist", "**/*spec.ts"] +} diff --git a/apps/connection-manager/nest-cli.json b/apps/connection-manager/nest-cli.json index 0a947a5..681ff0f 100644 --- a/apps/connection-manager/nest-cli.json +++ b/apps/connection-manager/nest-cli.json @@ -3,6 +3,8 @@ "sourceRoot": "src", "compilerOptions": { "builder": "swc", - "typeCheck": true + "typeCheck": true, + + "assets": ["**/*.prisma"] } } diff --git a/apps/connection-manager/tsconfig.build.json b/apps/connection-manager/tsconfig.build.json index 64f86c6..b7dacb2 100644 --- a/apps/connection-manager/tsconfig.build.json +++ b/apps/connection-manager/tsconfig.build.json @@ -1,4 +1,14 @@ { "extends": "./tsconfig.json", + "compilerOptions": { + "removeComments": false, + "declaration": true, + "sourceMap": true, + + "incremental": true, + "baseUrl": ".", + "outDir": "./dist", + "rootDir": "./src" + }, "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] } diff --git a/apps/connection-manager/tsconfig.production.json b/apps/connection-manager/tsconfig.production.json new file mode 100644 index 0000000..0f476e0 --- /dev/null +++ b/apps/connection-manager/tsconfig.production.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "composite": false, + "removeComments": true, + "declaration": false, + "sourceMap": false, + + "baseUrl": ".", + "outDir": "./dist", + "rootDir": "./src" + }, + "exclude": ["node_modules", "dist", "**/*spec.ts"] +} diff --git a/apps/proof-manager/nest-cli.json b/apps/proof-manager/nest-cli.json index 0a947a5..681ff0f 100644 --- a/apps/proof-manager/nest-cli.json +++ b/apps/proof-manager/nest-cli.json @@ -3,6 +3,8 @@ "sourceRoot": "src", "compilerOptions": { "builder": "swc", - "typeCheck": true + "typeCheck": true, + + "assets": ["**/*.prisma"] } } diff --git a/apps/proof-manager/tsconfig.production.json b/apps/proof-manager/tsconfig.production.json new file mode 100644 index 0000000..0f476e0 --- /dev/null +++ b/apps/proof-manager/tsconfig.production.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "composite": false, + "removeComments": true, + "declaration": false, + "sourceMap": false, + + "baseUrl": ".", + "outDir": "./dist", + "rootDir": "./src" + }, + "exclude": ["node_modules", "dist", "**/*spec.ts"] +} diff --git a/apps/ssi-abstraction/nest-cli.json b/apps/ssi-abstraction/nest-cli.json index 56167b3..681ff0f 100644 --- a/apps/ssi-abstraction/nest-cli.json +++ b/apps/ssi-abstraction/nest-cli.json @@ -1,4 +1,10 @@ { "collection": "@nestjs/schematics", - "sourceRoot": "src" + "sourceRoot": "src", + "compilerOptions": { + "builder": "swc", + "typeCheck": true, + + "assets": ["**/*.prisma"] + } } diff --git a/apps/ssi-abstraction/tsconfig.build.json b/apps/ssi-abstraction/tsconfig.build.json index 64f86c6..b7dacb2 100644 --- a/apps/ssi-abstraction/tsconfig.build.json +++ b/apps/ssi-abstraction/tsconfig.build.json @@ -1,4 +1,14 @@ { "extends": "./tsconfig.json", + "compilerOptions": { + "removeComments": false, + "declaration": true, + "sourceMap": true, + + "incremental": true, + "baseUrl": ".", + "outDir": "./dist", + "rootDir": "./src" + }, "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] } diff --git a/apps/ssi-abstraction/tsconfig.json b/apps/ssi-abstraction/tsconfig.json index dd7aef8..6f83eb6 100644 --- a/apps/ssi-abstraction/tsconfig.json +++ b/apps/ssi-abstraction/tsconfig.json @@ -1,15 +1,3 @@ { "extends": "../../tsconfig.json", - "compilerOptions": { - "composite": true, - "removeComments": false, - "declaration": true, - "sourceMap": true, - "incremental": true, - "outDir": "./dist", - "baseUrl": "./", - "rootDir": "./src" - }, - "include": ["src", "config"], - "exclude": ["node_modules", "dist"] } diff --git a/apps/ssi-abstraction/tsconfig.production.json b/apps/ssi-abstraction/tsconfig.production.json new file mode 100644 index 0000000..0f476e0 --- /dev/null +++ b/apps/ssi-abstraction/tsconfig.production.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "composite": false, + "removeComments": true, + "declaration": false, + "sourceMap": false, + + "baseUrl": ".", + "outDir": "./dist", + "rootDir": "./src" + }, + "exclude": ["node_modules", "dist", "**/*spec.ts"] +} -- GitLab