|
28 | 28 | "./package.json": "./package.json" |
29 | 29 | }, |
30 | 30 | "scripts": { |
31 | | - "build": "pnpm run clean:dist && tsgo --build", |
| 31 | + "build": "pnpm run clean:dist && tsgo --build .config/tsconfig.json --force", |
32 | 32 | "check": "run-p -c --aggregate-output check:*", |
33 | | - "check:lint": "eslint --report-unused-disable-directives .", |
| 33 | + "check:lint": "eslint --config .config/eslint.config.mjs --report-unused-disable-directives .", |
34 | 34 | "check:lint:fix": "pnpm run check:lint -- --fix", |
35 | | - "check:tsc": "tsgo --noEmit -p tsconfig.check.json", |
| 35 | + "check:tsc": "tsgo --noEmit -p .config/tsconfig.check.json", |
36 | 36 | "lint-ci": "pnpm run check:lint", |
37 | 37 | "coverage": "run-s coverage:*", |
38 | 38 | "coverage:test": "run-s pretest:unit test:unit:coverage", |
|
52 | 52 | "generate-sdk:03-clean-api": "pnpm run fix && pnpm run fix", |
53 | 53 | "knip:dependencies": "knip --dependencies", |
54 | 54 | "knip:exports": "knip --include exports,duplicates", |
55 | | - "lint": "oxlint -c=.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json .", |
| 55 | + "lint": "oxlint -c=.config/.oxlintrc.json --ignore-path=.config/.oxlintignore --tsconfig=.config/tsconfig.json .", |
56 | 56 | "lint:fix": "run-s -c lint:fix:*", |
57 | | - "lint:fix:oxlint": "oxlint -c=.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json --quiet --fix . | dev-null", |
| 57 | + "lint:fix:oxlint": "oxlint -c=.config/.oxlintrc.json --ignore-path=.config/.oxlintignore --tsconfig=.config/tsconfig.json --quiet --fix . | dev-null", |
58 | 58 | "lint:fix:biome": "biome format --log-level=none --fix . | dev-null", |
59 | | - "lint:fix:eslint": "eslint --report-unused-disable-directives --fix . | dev-null", |
| 59 | + "lint:fix:eslint": "eslint --config .config/eslint.config.mjs --report-unused-disable-directives --fix . | dev-null", |
60 | 60 | "lint-staged": "lint-staged", |
61 | 61 | "precommit": "lint-staged", |
62 | 62 | "prepare": "husky", |
63 | 63 | "prepublishOnly": "echo 'ERROR: Use GitHub Actions workflow for publishing' && exit 1", |
64 | | - "pretest:unit": "dotenvx -q run -f .env.test -- pnpm run build", |
| 64 | + "pretest:unit": "pnpm run build", |
65 | 65 | "test": "run-s check test:*", |
66 | 66 | "test:run": "node scripts/test.mjs", |
67 | 67 | "test:unit": "dotenvx -q run -f .env.test -- vitest --run", |
|
0 commit comments