Skip to content

Commit 809d1bc

Browse files
authored
docs(cli): target ts format first (#449)
1 parent c2b81cc commit 809d1bc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/cli/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
4040

4141
</details>
4242

43-
2. Create a `code-pushup.config.js` configuration file (`.ts` or `.mjs` extensions are also supported).
43+
2. Create a `code-pushup.config.ts` configuration file (`.js` or `.mjs` extensions are also supported).
4444

45-
```js
45+
```ts
4646
export default {
4747
plugins: [
4848
// ...
@@ -56,7 +56,7 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
5656
npm install --save-dev @code-pushup/eslint-plugin
5757
```
5858

59-
```js
59+
```ts
6060
import eslintPlugin from '@code-pushup/eslint-plugin';
6161

6262
export default {
@@ -76,7 +76,7 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
7676

7777
1. Define your custom categories.
7878

79-
```js
79+
```ts
8080
export default {
8181
// ...
8282
categories: [
@@ -107,7 +107,7 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
107107

108108
If you have access to the Code PushUp portal, provide credentials in order to upload reports.
109109

110-
```js
110+
```ts
111111
export default {
112112
// ...
113113
upload: {

0 commit comments

Comments
 (0)