Skip to content

Commit 2bda45e

Browse files
committed
Fix paths
1 parent 2755fc0 commit 2bda45e

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

files/babel.config.cjs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ const isCompat = Boolean(process.env.ENABLE_COMPAT_BUILD);
1212

1313
module.exports = {
1414
plugins: [<% if (typescript) { %>
15-
['@babel/plugin-transform-typescript', {
16-
allExtensions: true,
17-
allowDeclareFields: true,
18-
onlyRemoveTypeImports: true,
19-
}],<% } %>
15+
[
16+
'@babel/plugin-transform-typescript',
17+
{
18+
allExtensions: true,
19+
allowDeclareFields: true,
20+
onlyRemoveTypeImports: true,
21+
},
22+
],<% } %>
2023
[
2124
'babel-plugin-ember-template-compilation',
2225
{

tests/smoke-tests/--typescript.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ for (let packageManager of SUPPORTED_PACKAGE_MANAGERS) {
5252

5353
it('build and test', async () => {
5454
// Copy over fixtures
55-
await helper.fixtures.use('./my-addon/src');
56-
await helper.fixtures.use('./test-app/tests');
55+
await helper.fixtures.use('./src');
56+
await helper.fixtures.use('./tests');
5757
// Sync fixture with project's lint / formatting configuration
5858
// (controlled by ember-cli)
5959
//

0 commit comments

Comments
 (0)