We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f969b2 commit 34af0d3Copy full SHA for 34af0d3
packages/react-native-builder-bob/src/targets/typescript.ts
@@ -78,12 +78,14 @@ export default async function build({
78
}
79
} catch (e) {
80
report.warn(
81
- `Couldn't parse '${project}'. There might be validation errors.`
+ `Couldn't parse ${kleur.blue(
82
+ project
83
+ )}. There might be validation errors.`
84
);
85
86
} else {
87
throw new Error(
- `Couldn't find a ${kleur.blue('tsconfig.json')} in the project root.`
88
+ `Couldn't find a ${kleur.blue(project)} in the project root.`
89
90
91
0 commit comments