Skip to content

Commit 92ef8c8

Browse files
feat: remove sourcemaps (#1963)
## PR Checklist - [x] Addresses an existing open issue: fixes #1909 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Per discussions linked in the issue, removes sourcemaps to significantly reduce the size of output files. | Target | Package Size | Unpacked Size | Total Files | | ------------------- | ------------ | ------------- | ----------- | | `main` | 106.7 kB | 609.9 kB | 277 | | `remove-sourcemaps` | 54.1 kB | 369.9 kB | 186 | | Comparison | 49% smaller | 39% smaller | 32% smaller | Raw `npm pack` output on `main`: ```plaintext npm notice Tarball Details npm notice name: create-typescript-app npm notice version: 2.2.0 npm notice filename: create-typescript-app-2.2.0.tgz npm notice package size: 106.7 kB npm notice unpacked size: 609.9 kB npm notice shasum: dd0439e3a977c55bbfaa8449f73799314b925368 npm notice integrity: sha512-Z0nBEgLroJY5p[...]yi9LJdG28f9DA== npm notice total files: 277 ``` Raw `npm pack` output with this change: ```plaintext npm notice Tarball Details npm notice name: create-typescript-app npm notice version: 2.2.0 npm notice filename: create-typescript-app-2.2.0.tgz npm notice package size: 54.1 kB npm notice unpacked size: 369.9 kB npm notice shasum: 8f92517ecbd9dbffdba72b5dd11aeceaf7d61b9b npm notice integrity: sha512-OaNzBaDi41IH5[...]HospZHaW1trEQ== npm notice total files: 186 ```
1 parent 2377188 commit 92ef8c8

7 files changed

+3
-10
lines changed

docs/Blocks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ We strongly recommend using at least the [_"common"_ base level](#common-base-le
7272
### Building
7373

7474
[**tsup**](https://tsup.egoist.dev): Builds output definitions and JavaScript files using [esbuild](https://esbuild.github.io).
75-
Each `*.ts` source file within `src/` is built into `.d.ts`, `.js`, and `.js.map` output files in `lib/`.
75+
Each `*.ts` source file within `src/` is built into `.d.ts` and `.js` output files in `lib/`.
7676

7777
Building once:
7878

src/blocks/blockTSup.test.ts

-3
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ describe("blockTSup", () => {
8787
entry: ["src/**/*.ts"],
8888
format: "esm",
8989
outDir: "lib",
90-
sourcemap: true,
9190
});
9291
",
9392
},
@@ -175,7 +174,6 @@ describe("blockTSup", () => {
175174
entry: ["src/**/*.ts"],
176175
format: "esm",
177176
outDir: "lib",
178-
sourcemap: true,
179177
});
180178
",
181179
},
@@ -279,7 +277,6 @@ describe("blockTSup", () => {
279277
entry: ["src/**/*.ts","!src/**/*.test.ts"],
280278
format: "esm",
281279
outDir: "lib",
282-
sourcemap: true,
283280
});
284281
",
285282
},

src/blocks/blockTSup.ts

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ export default defineConfig({
7676
entry: ${JSON.stringify(["src/**/*.ts", ...entry])},
7777
format: "esm",
7878
outDir: "lib",
79-
sourcemap: true,
8079
});
8180
`,
8281
},

src/blocks/blockTypeScript.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ describe("blockTypeScript", () => {
147147
},
148148
],
149149
"files": {
150-
"tsconfig.json": "{"compilerOptions":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":"NodeNext","moduleResolution":"NodeNext","noEmit":true,"resolveJsonModule":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":"ES2022"},"include":["src"]}",
150+
"tsconfig.json": "{"compilerOptions":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":"NodeNext","moduleResolution":"NodeNext","noEmit":true,"resolveJsonModule":true,"skipLibCheck":true,"strict":true,"target":"ES2022"},"include":["src"]}",
151151
},
152152
}
153153
`);
@@ -309,7 +309,7 @@ describe("blockTypeScript", () => {
309309
},
310310
],
311311
"files": {
312-
"tsconfig.json": "{"compilerOptions":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":"NodeNext","moduleResolution":"NodeNext","noEmit":true,"resolveJsonModule":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":"ES2022"},"include":["src"]}",
312+
"tsconfig.json": "{"compilerOptions":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":"NodeNext","moduleResolution":"NodeNext","noEmit":true,"resolveJsonModule":true,"skipLibCheck":true,"strict":true,"target":"ES2022"},"include":["src"]}",
313313
},
314314
}
315315
`);

src/blocks/blockTypeScript.ts

-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ export * from "./types.js";
121121
noEmit: true,
122122
resolveJsonModule: true,
123123
skipLibCheck: true,
124-
sourceMap: true,
125124
strict: true,
126125
target: "ES2022",
127126
},

tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"noEmit": true,
99
"resolveJsonModule": true,
1010
"skipLibCheck": true,
11-
"sourceMap": true,
1211
"strict": true,
1312
"target": "ES2022"
1413
},

tsup.config.ts

-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@ export default defineConfig({
77
entry: ["src/**/*.ts", "!src/**/*.test.*"],
88
format: "esm",
99
outDir: "lib",
10-
sourcemap: true,
1110
});

0 commit comments

Comments
 (0)