We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69cc630 commit d7d73aaCopy full SHA for d7d73aa
epicshop/fix.js
@@ -36,7 +36,8 @@ const apps = [...exampleApps, ...exerciseApps]
36
37
const appsWithPkgJson = [...examples, ...apps].filter((app) => {
38
const pkgjsonPath = path.join(app, 'package.json')
39
- return exists(pkgjsonPath)
+ const tsconfigPath = path.join(app, 'tsconfig.json')
40
+ return exists(pkgjsonPath) && exists(tsconfigPath)
41
})
42
43
// update the package.json file name property
tsconfig.json
@@ -15,12 +15,6 @@
15
},
16
{
17
"path": "exercises/01.exercise-navigation/02.solution.multi-step"
18
- },
19
- {
20
- "path": "exercises/02.app-varieties/01.problem.no-preview"
21
22
23
- "path": "exercises/02.app-varieties/01.solution.no-preview"
24
}
25
]
26
0 commit comments