Ver Fonte

Setup and fix eclude option for nestjs.

FAMBL há 2 anos atrás
pai
commit
c31a82a4f1

+ 1 - 1
src/FisAppQueryModule/DefaultQuery/Fis-GraphQLQueryGenerator

@@ -1 +1 @@
-Subproject commit 6a411afafa0170f907ac72225ec26bb313d1b174
+Subproject commit 92f459910d885134797846149af039b946403326

+ 1 - 1
src/common-service-channel/common-service-channel.controller.ts

@@ -1,6 +1,6 @@
 import { Controller, Post, Req } from '@nestjs/common';
 import { Observable } from 'rxjs';
-import { DataServiceMessage } from 'src/FisAppQueryModule/entities/DataService.entity';
+import { DataServiceMessage } from '../FisAppQueryModule/entities/DataService.entity';
 
 import { DataServiceManager } from '../FisAppQueryModule/Manager.dataservice';
 

+ 7 - 1
tsconfig.build.json

@@ -1,4 +1,10 @@
 {
   "extends": "./tsconfig.json",
-  "exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
+  "exclude": [
+    "node_modules", 
+    "test", 
+    "dist", 
+    "**/*spec.ts",
+    "src/FisAppQueryModule/DefaultQuery/Fis-GraphQLQueryGenerator/GraphQLSourceInput/*"
+  ]
 }

+ 3 - 3
tsconfig.json

@@ -1,5 +1,5 @@
 {
-  "compilerOptions": {
+  "compilerOptions": {  
     "module": "commonjs",
     "declaration": true,
     "removeComments": true,
@@ -9,10 +9,10 @@
     "target": "es2017",
     "sourceMap": true,
     "outDir": "./dist",
-    "baseUrl": "./",
     "incremental": true,
     "skipLibCheck": true,
-    "resolveJsonModule" : true
+    "resolveJsonModule" : true 
   },
   "include": ["src/**/*","src/**/**/*","src/**/dlls/*.dll"]
+  // NOTE: More options at tsconfig.build.json
 }