@foxglove/tsconfig 2.0.0 → 2.0.1-trusted-publishing-test.1

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/README.md +1 -1
  2. package/package.json +20 -21
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Base tsconfig for Foxglove projects.
6
6
 
7
- To use, run `npm i --save-dev @foxglove/tsconfig`, then extend your `tsconfig.json` like so:
7
+ To use, run `yarn add -D @foxglove/tsconfig`, then extend your `tsconfig.json` like so:
8
8
 
9
9
  ```json
10
10
  {
package/package.json CHANGED
@@ -1,36 +1,35 @@
1
1
  {
2
2
  "name": "@foxglove/tsconfig",
3
- "private": false,
4
- "version": "2.0.0",
3
+ "version": "2.0.1-trusted-publishing-test.1",
5
4
  "description": "Base TypeScript configuration for Foxglove projects",
6
5
  "license": "MIT",
7
- "repository": "github:foxglove/tsconfig",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/foxglove/tsconfig.git"
9
+ },
10
+ "homepage": "https://github.com/foxglove/tsconfig",
8
11
  "author": {
9
12
  "name": "Foxglove",
10
13
  "email": "contact@foxglove.dev",
11
14
  "url": "https://foxglove.dev/"
12
15
  },
16
+ "packageManager": "yarn@4.12.0",
13
17
  "files": [
14
- "*.json"
18
+ "base.json"
15
19
  ],
16
20
  "scripts": {
17
- "lint": "tsc --project base.json --outDir dist && eslint ."
21
+ "clean": "rm -rf dist",
22
+ "build": "yarn clean && tsc --project base.json --outDir dist",
23
+ "fmt": "prettier --write .",
24
+ "fmt:check": "prettier --check .",
25
+ "lint": "eslint --fix .",
26
+ "lint:check": "eslint ."
18
27
  },
19
28
  "devDependencies": {
20
- "@foxglove/eslint-plugin": "0.21.2",
21
- "@types/jest": "29.5.1",
22
- "@typescript-eslint/eslint-plugin": "5.59.1",
23
- "@typescript-eslint/parser": "5.59.1",
24
- "esbuild-jest": "0.5.0",
25
- "eslint": "8.39.0",
26
- "eslint-config-prettier": "8.8.0",
27
- "eslint-plugin-es": "4.1.0",
28
- "eslint-plugin-filenames": "1.3.2",
29
- "eslint-plugin-import": "2.27.5",
30
- "eslint-plugin-jest": "27.2.1",
31
- "eslint-plugin-prettier": "4.2.1",
32
- "jest": "29.5.0",
33
- "prettier": "2.8.8",
34
- "typescript": "5.0.4"
29
+ "@foxglove/eslint-plugin": "2.1.0",
30
+ "eslint": "9.39.2",
31
+ "prettier": "3.7.4",
32
+ "typescript": "5.9.3",
33
+ "typescript-eslint": "8.53.0"
35
34
  }
36
- }
35
+ }