Skip to content

Commit

Permalink
chore: format json files with biome (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsevcik authored Sep 18, 2024
1 parent 436d197 commit ee21ea2
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 57 deletions.
10 changes: 5 additions & 5 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": [
"./node_modules/@lokalise/biome-config/configs/biome-base.jsonc",
"./node_modules/@lokalise/biome-config/configs/biome-package.jsonc"
]
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": [
"./node_modules/@lokalise/biome-config/configs/biome-base.jsonc",
"./node_modules/@lokalise/biome-config/configs/biome-package.jsonc"
]
}
80 changes: 40 additions & 40 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
{
"name": "@lokalise/frontegg-oauth-client",
"version": "0.0.0-automatically-updated-during-publishing",
"scripts": {
"build": "vite build",
"lint:ts": "tsc --noEmit",
"lint": "biome check && npm run lint:ts",
"lint:fix": "biome check --write",
"test": "vitest run"
},
"files": ["dist"],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
"name": "@lokalise/frontegg-oauth-client",
"version": "0.0.0-automatically-updated-during-publishing",
"scripts": {
"build": "vite build",
"lint:ts": "tsc --noEmit",
"lint": "biome check && npm run lint:ts",
"lint:fix": "biome check --write",
"test": "vitest run"
},
"files": ["dist"],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@lokalise/biome-config": "^1.4.0",
"@lokalise/package-vite-config": "^3.1.0",
"jsdom": "^25.0.0",
"msw": "^2.4.8",
"semantic-release": "^24.1.1",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=20"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@lokalise/biome-config": "^1.4.0",
"@lokalise/package-vite-config": "^3.1.0",
"jsdom": "^25.0.0",
"msw": "^2.4.8",
"semantic-release": "^24.1.1",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=20"
}
}
24 changes: 12 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"declaration": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["vitest/globals"]
}
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"declaration": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["vitest/globals"]
}
}

0 comments on commit ee21ea2

Please sign in to comment.