diff --git a/CHANGELOG.md b/CHANGELOG.md index d5be79ac4..1463f2c46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1429,9 +1429,9 @@ "compilerOptions": { "baseUrl": ".", "paths": { - "src": ["src"] - } - } + "src": ["src"], + }, + }, } ``` diff --git a/docs/cli/build.md b/docs/cli/build.md index 24effd0fb..c56ede9ca 100644 --- a/docs/cli/build.md +++ b/docs/cli/build.md @@ -34,7 +34,7 @@ By convention, this points to a `tsconfig.build.json` that excludes tests from y { "exclude": ["**/__mocks__/**/*", "**/*.test.ts", "src/testing/**/*"], "extends": "tsconfig.json", - "include": ["src/**/*"] + "include": ["src/**/*"], } ``` @@ -42,9 +42,9 @@ By convention, this points to a `tsconfig.build.json` that excludes tests from y // tsconfig.json { "compilerOptions": { - "outDir": "lib" + "outDir": "lib", }, - "exclude": ["lib*/**/*"] + "exclude": ["lib*/**/*"], } ``` diff --git a/docs/deep-dives/babel.md b/docs/deep-dives/babel.md index 83d0eb570..7360fb987 100644 --- a/docs/deep-dives/babel.md +++ b/docs/deep-dives/babel.md @@ -28,8 +28,8 @@ Discussion continues in the [esbuild](./esbuild.md) deep dive. ```jsonc { "skuba": { - "babel": true - } + "babel": true, + }, } ``` diff --git a/docs/deep-dives/esbuild.md b/docs/deep-dives/esbuild.md index f6791cf4b..370ba06d3 100644 --- a/docs/deep-dives/esbuild.md +++ b/docs/deep-dives/esbuild.md @@ -88,8 +88,8 @@ At the same time, esbuild presents potential benefits for **skuba**: ```jsonc { "skuba": { - "build": "esbuild" - } + "build": "esbuild", + }, } ``` diff --git a/docs/migration-guides/seek-module-toolkit.md b/docs/migration-guides/seek-module-toolkit.md index 764ec2fef..cacbebeef 100644 --- a/docs/migration-guides/seek-module-toolkit.md +++ b/docs/migration-guides/seek-module-toolkit.md @@ -72,11 +72,11 @@ Expect something like this: "lib*/**/*.d.ts", "lib*/**/*.js", "lib*/**/*.js.map", - "lib*/**/*.json" + "lib*/**/*.json", ], "main": "./lib-commonjs/index.js", "module": "./lib-es2015/index.js", - "types": "./lib-types/index.d.ts" + "types": "./lib-types/index.d.ts", } ```