Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
"format": "prettier --check . --ignore-path ../../.gitignore",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"typecheck:tsgo": "tsgo --noEmit",
"expo:prebuild": "expo prebuild",
"setup:secret:files": "[ ! -s ./google-services.json ] && echo $GOOGLE_SERVICES_JSON > ./google-services.json || echo \"\" ; [ ! -s ./GoogleService-Info.plist ] && echo $GOOGLE_SERVICE_INFO_PLIST > ./GoogleService-Info.plist || echo \"\"",
"preinstall": "pnpm setup:secret:files",
Expand Down
3 changes: 2 additions & 1 deletion apps/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"lint:fix": "pnpm lint --fix",
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
"format": "prettier --check . --ignore-path ../../.gitignore",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"typecheck:tsgo": "tsgo --noEmit"
},
"eslintConfig": {
"root": true,
Expand Down
3 changes: 2 additions & 1 deletion apps/queue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"build": "npx rimraf dist && tsup --sourcemap",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"typecheck:tsgo": "tsgo --noEmit"
},
"devDependencies": {
"@pegada/eslint-config": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
}
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260511.1",
"dotenv-cli": "^7.4.2",
"prettier": "3.3.3",
"turbo": "^2.0.11",
Expand All @@ -49,6 +50,7 @@
"format:fix": "turbo format:fix",
"i18n:parse": "npx i18next-parser",
"typecheck": "turbo typecheck",
"typecheck:tsgo": "turbo typecheck:tsgo",
"convert:images": "./scripts/convert-png-images-to-webp.sh",
"download:secrets": "dotenv -- ./scripts/download-secrets.sh"
}
Expand Down
1 change: 1 addition & 0 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"test": "jest --detectOpenHandles",
"pretest": "pnpm -F @pegada/database test:db:setup",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"typecheck:tsgo": "tsgo --noEmit",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "pnpm lint --fix",
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
Expand Down
1 change: 1 addition & 0 deletions packages/database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"studio": "prisma studio",
"build": "npx prisma generate",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"typecheck:tsgo": "tsgo --noEmit",
"db:up": "docker-compose up --build --detach",
"db:seed": "npx prisma db seed",
"db:setup": "pnpm db:up && pnpm migrate deploy && pnpm db:seed",
Expand Down
1 change: 1 addition & 0 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"typecheck:tsgo": "tsgo --noEmit",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "pnpm lint --fix",
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
Expand Down
110 changes: 107 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion tools/prettier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
"typecheck": "tsgo --noEmit",
"typecheck:tsc": "tsc --noEmit --emitDeclarationOnly false"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
Expand Down
10 changes: 10 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@
"node_modules/.cache/tsbuildinfo.json"
]
},
"typecheck:tsgo": {
"outputs": [
"node_modules/.cache/tsbuildinfo.json"
]
},
"typecheck:tsc": {
"outputs": [
"node_modules/.cache/tsbuildinfo.json"
]
},
"build": {
"outputs": [
"node_modules/.cache/build.json"
Expand Down
Loading