refactor(i18n): merge tools scoped locales with global ones (#612)

This commit is contained in:
Corentin THOMASSET 2023-09-03 22:07:45 +02:00 committed by GitHub
parent 7ab9204e96
commit 233d5565f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 6 deletions

View file

@ -25,7 +25,7 @@ export default defineConfig({
runtimeOnly: true,
compositionOnly: true,
fullInstall: true,
include: [resolve(__dirname, 'locales/**'), resolve(__dirname, 'src/tools/*/locales/**')],
include: [resolve(__dirname, 'locales/**')],
}),
AutoImport({
imports: [
@ -106,4 +106,7 @@ export default defineConfig({
test: {
exclude: [...configDefaults.exclude, '**/*.e2e.spec.ts'],
},
build: {
target: 'esnext',
},
});