|
13 | 13 | "@swc/jest": "^0.2.39", |
14 | 14 | "@types/jest": "^30.0.0", |
15 | 15 | "@typescript-eslint/parser": "^8.60.0", |
| 16 | + "@typescript/native-preview": "7.0.0-dev.20260527.2", |
16 | 17 | "concurrently": "^9.2.1", |
17 | 18 | "eslint": "^10.4.1", |
18 | 19 | "eslint-config-prettier": "^10.1.8", |
|
36 | 37 | "preinstall": "npx only-allow pnpm", |
37 | 38 | "prepare": "husky", |
38 | 39 | "bump-prerelease": "node ./scripts/pre-release.js", |
39 | | - "build": "NODE_ENV=production pnpm run build:dev", |
40 | | - "build:fast": "NODE_ENV=production pnpm run build:dev:fast", |
41 | | - "build:dev": "rm -rf lana/out && concurrently -r -g 'rollup -c rollup.config.mjs' 'tsc --noemit --skipLibCheck -p apex-log-parser/tsconfig.json' 'tsc --noemit --skipLibCheck -p log-viewer/tsconfig.json' 'tsc --noemit --skipLibCheck -p lana/tsconfig.json'", |
42 | | - "build:dev:fast": "rm -rf lana/out && concurrently -r -g 'rolldown -c rolldown.config.ts' 'tsc --noemit --skipLibCheck -p apex-log-parser/tsconfig.json' 'tsc --noemit --skipLibCheck -p log-viewer/tsconfig.json' 'tsc --noemit --skipLibCheck -p lana/tsconfig.json'", |
| 40 | + "build": "pnpm run typecheck && NODE_ENV=production pnpm run build:dev", |
| 41 | + "build:fast": "pnpm run typecheck && NODE_ENV=production pnpm run build:dev:fast", |
| 42 | + "build:dev": "rm -rf lana/out && rollup -c rollup.config.mjs", |
| 43 | + "build:dev:fast": "rm -rf lana/out && rolldown -c rolldown.config.ts", |
43 | 44 | "watch": "rm -rf lana/out && rollup -w -c rollup.config.mjs", |
44 | 45 | "watch:fast": "rm -rf lana/out && rolldown -w -c rolldown.config.ts", |
45 | | - "lint": "concurrently -r -g 'eslint **/*.ts' 'prettier --cache **/*.{ts,css,md,scss} --check --experimental-cli' 'tsc --noemit --skipLibCheck -p apex-log-parser/tsconfig.json' 'tsc --noemit --skipLibCheck -p log-viewer/tsconfig.json' 'tsc --noemit --skipLibCheck -p lana/tsconfig.json'", |
| 46 | + "typecheck": "tsgo -b", |
| 47 | + "typecheck:tsc": "tsc -b", |
| 48 | + "lint": "concurrently -r -g 'eslint **/*.ts' 'prettier --cache **/*.{ts,css,md,scss} --check --experimental-cli' 'pnpm run typecheck'", |
46 | 49 | "test": "jest", |
47 | 50 | "test:ci": "jest --runInBand", |
48 | 51 | "prettier-format": "prettier '**/*.ts' --cache --write --experimental-cli" |
|
0 commit comments