Skip to content

Commit

Permalink
fix(examples): Fix nest-cli.json to reference correct tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed Sep 4, 2020
1 parent aa95f40 commit a49d063
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions examples/nest-cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"entryFile": "main",
"sourceRoot": "auth/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"basic": {
Expand All @@ -17,7 +17,7 @@
"entryFile": "main",
"sourceRoot": "basic/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"complexity": {
Expand All @@ -26,7 +26,7 @@
"entryFile": "main",
"sourceRoot": "complexity/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"federation:gateway": {
Expand All @@ -35,7 +35,7 @@
"entryFile": "main",
"sourceRoot": "federation/graphql-gateway/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"federation:sub-task": {
Expand All @@ -44,7 +44,7 @@
"entryFile": "main",
"sourceRoot": "federation/sub-task-graphql/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"federation:tag": {
Expand All @@ -53,7 +53,7 @@
"entryFile": "main",
"sourceRoot": "federation/tag-graphql/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"federation:todo-item": {
Expand All @@ -62,7 +62,7 @@
"entryFile": "main",
"sourceRoot": "federation/todo-item-graphql/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"offset-paging": {
Expand All @@ -71,7 +71,7 @@
"entryFile": "main",
"sourceRoot": "offset-paging/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"no-paging": {
Expand All @@ -80,7 +80,7 @@
"entryFile": "main",
"sourceRoot": "no-paging/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"sequelize": {
Expand All @@ -89,7 +89,7 @@
"entryFile": "main",
"sourceRoot": "sequelize/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"subscriptions": {
Expand All @@ -98,7 +98,7 @@
"entryFile": "main",
"sourceRoot": "subscriptions/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"typeorm": {
Expand All @@ -107,7 +107,7 @@
"entryFile": "main",
"sourceRoot": "typeorm/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"typeorm-multidb": {
Expand All @@ -116,7 +116,7 @@
"entryFile": "main",
"sourceRoot": "typeorm-multidb/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
},
"typeorm-soft-delete": {
Expand All @@ -125,7 +125,7 @@
"entryFile": "main",
"sourceRoot": "typeorm-multidb/src",
"compilerOptions": {
"tsConfigPath": "./tsconfig.build.json"
"tsConfigPath": "./tsconfig.json"
}
}
}
Expand Down

0 comments on commit a49d063

Please sign in to comment.