create-daloy 0.1.19 → 0.1.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-daloy",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "Scaffold a new DaloyJS project. Run with `pnpm create daloy`, `npm create daloy@latest`, `yarn create daloy`, or `bun create daloy`.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -9,7 +9,7 @@
9
9
  "scripts": {
10
10
  "dev": "node --import tsx/esm --watch src/index.ts",
11
11
  "start": "node --import tsx/esm src/index.ts",
12
- "build": "tsc -p tsconfig.json",
12
+ "build": "tsc -p tsconfig.build.json",
13
13
  "typecheck": "tsc --noEmit",
14
14
  "test": "node --import tsx/esm --test tests/**/*.test.ts",
15
15
  "gen:openapi": "node --import tsx/esm scripts/dump-openapi.ts",
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "outDir": "dist",
6
+ "sourceMap": true
7
+ },
8
+ "include": ["src/**/*", "scripts/**/*"],
9
+ "exclude": ["node_modules", "dist", "tests"]
10
+ }
@@ -7,15 +7,12 @@
7
7
  "types": ["node"],
8
8
  "strict": true,
9
9
  "noUncheckedIndexedAccess": true,
10
- "declaration": true,
11
- "sourceMap": true,
12
- "outDir": "dist",
13
- "rootDir": "./src",
10
+ "rootDir": ".",
14
11
  "esModuleInterop": true,
15
12
  "skipLibCheck": true,
16
13
  "forceConsistentCasingInFileNames": true,
17
14
  "resolveJsonModule": true
18
15
  },
19
- "include": ["src/**/*"],
20
- "exclude": ["node_modules", "dist", "tests"]
16
+ "include": ["src/**/*", "scripts/**/*", "tests/**/*"],
17
+ "exclude": ["node_modules", "dist"]
21
18
  }