@codabytez/create-next-template 0.1.8 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -109,6 +109,7 @@ var BASE_DEV_DEPS = {
109
109
  // Code quality
110
110
  eslint: "^10.1.0",
111
111
  "eslint-config-next": "^16.2.0",
112
+ "typescript-eslint": "^8.57.1",
112
113
  prettier: "^3.8.1",
113
114
  "eslint-config-prettier": "^10.1.8",
114
115
  // Git hooks
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codabytez/create-next-template",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "CLI to scaffold Next.js projects with your preferred stack",
5
5
  "bin": {
6
6
  "create-next-template": "./dist/index.js"
@@ -1,10 +1,14 @@
1
1
  import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
2
2
  import eslintConfigPrettier from "eslint-config-prettier";
3
+ import tseslint from "typescript-eslint";
3
4
 
4
5
  const eslintConfig = [
5
6
  ...nextCoreWebVitals,
6
7
  eslintConfigPrettier,
7
8
  {
9
+ plugins: {
10
+ "@typescript-eslint": tseslint.plugin,
11
+ },
8
12
  rules: {
9
13
  "no-console": ["error", { allow: ["warn", "error"] }],
10
14
  "no-debugger": "error",