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 9e276c3 commit 733537aCopy full SHA for 733537a
1 file changed
nuxt.config.ts
@@ -246,7 +246,13 @@ export default defineNuxtConfig({
246
tsConfig: {
247
compilerOptions: {
248
noUnusedLocals: true,
249
+ // TODO (jg): this isn't actually right since the app shouldn't be
250
+ // importing `.ts` files directly. But there is an app test which
251
+ // imports the CLI, which _does_ import `.ts` files directly.
252
+ // Figure out a better solution later.
253
+ allowImportingTsExtensions: true,
254
},
255
+ include: ['../test/unit/app/**/*.ts'],
256
257
nodeTsConfig: {
258
0 commit comments