Skip to content

Commit 784893c

Browse files
committed
chore: update package dependencies and scripts
- Updated dependencies in package.json for the main module and playground. - Enhanced dev scripts to include preparation steps before running the development server. - Added linting and testing scripts to the main module. - Refactored playground's app.vue to clean up console logging. - Configured Nuxt devtools in playground's nuxt.config.ts. - Introduced TypeScript configuration files for playground server and main project. - Refactored module.ts to use node imports and improved code formatting. - Updated tsconfig.json to exclude unnecessary directories.
1 parent 0e9baa9 commit 784893c

File tree

14 files changed

+3131
-4500
lines changed

14 files changed

+3131
-4500
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
shamefully-hoist=true
2+
strict-peer-dependencies=false

.nuxtrc

Lines changed: 0 additions & 2 deletions
This file was deleted.

eslint.config.mjs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// @ts-check
2+
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'
3+
4+
// Run `npx @eslint/config-inspector` to inspect the resolved config interactively
5+
export default createConfigForNuxt({
6+
features: {
7+
// Rules for module authors
8+
tooling: true,
9+
// Rules for formatting
10+
stylistic: true,
11+
},
12+
dirs: {
13+
src: [
14+
'./playground',
15+
],
16+
},
17+
})
18+
.append(
19+
// your custom flat config here...
20+
)

0 commit comments

Comments
 (0)