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 fc89da2 commit 6b665a6Copy full SHA for 6b665a6
2 files changed
addon/rollup.config.mjs
@@ -38,7 +38,10 @@ export default {
38
// `dependencies` and `peerDependencies` as well as standard Ember-provided
39
// package names.
40
addon.dependencies(),
41
- addon.declarations(),
+ addon.declarations(
42
+ 'declarations',
43
+ 'pnpm ember-tsc --declaration --declarationDir declarations',
44
+ ),
45
46
// Remove leftover build artifacts when starting a new build.
47
addon.clean(),
addon/tsconfig.json
@@ -5,8 +5,6 @@
5
"unpublished-development-types/**/*"
6
],
7
"compilerOptions": {
8
- "declarationDir": "declarations",
9
- "allowJs": true,
10
"rootDir": "./src",
11
"types": ["ember-source/types", "@glint/ember-tsc/types"]
12
}
0 commit comments