create-avalon 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -7
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -1242,19 +1242,14 @@ function generateTsConfig() {
1242
1242
  strict: true,
1243
1243
  esModuleInterop: true,
1244
1244
  skipLibCheck: true,
1245
+ allowArbitraryExtensions: true,
1245
1246
  jsx: "react-jsx",
1246
1247
  paths: {
1247
1248
  "@shared/*": ["./app/shared/*"],
1248
1249
  "@modules/*": ["./app/modules/*"]
1249
1250
  }
1250
1251
  },
1251
- include: [
1252
- "app/**/*.ts",
1253
- "app/**/*.tsx",
1254
- "server/**/*.ts",
1255
- "routes/**/*.ts",
1256
- "middleware/**/*.ts"
1257
- ]
1252
+ include: ["app/**/*.ts", "app/**/*.tsx", "server/**/*.ts", "routes/**/*.ts", "middleware/**/*.ts"]
1258
1253
  };
1259
1254
  return JSON.stringify(tsconfig, null, 2);
1260
1255
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-avalon",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Scaffold a new Avalon project with multi-framework islands architecture",
5
5
  "license": "MIT",
6
6
  "type": "module",