Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,13 @@ export default defineNuxtConfig({
tsConfig: {
compilerOptions: {
noUnusedLocals: true,
// TODO (jg): this isn't actually right since the app shouldn't be
// importing `.ts` files directly. But there is an app test which
// imports the CLI, which _does_ import `.ts` files directly.
// Figure out a better solution later.
Comment thread
danielroe marked this conversation as resolved.
Outdated
allowImportingTsExtensions: true,
},
include: ['../test/unit/app/**/*.ts'],
},
nodeTsConfig: {
compilerOptions: {
Expand Down
Loading