diff --git a/.gitignore b/.gitignore index a94b597c10b..2e5b73ca783 100644 --- a/.gitignore +++ b/.gitignore @@ -71,6 +71,7 @@ public/**/**/nextImageExportOptimizer/ public/next-image-export-optimizer-hashes.json src/directory/directory.json src/directory/flatDirectory.json +tsconfig.tsbuildinfo #amplify-do-not-edit-begin amplify/\#current-cloud-backend diff --git a/package.json b/package.json index 03a8d28625e..5334b4e76d0 100644 --- a/package.json +++ b/package.json @@ -105,6 +105,7 @@ "prepare": "husky install", "analyze": "ANALYZE=true yarn next-build", "prebuild": "node src/directory/generateDirectory.mjs && node src/directory/generateFlatDirectory.mjs", - "lint": "next lint" + "lint": "yarn typecheck && next lint", + "typecheck": "tsc --noEmit" } } diff --git a/src/constants/versions.ts b/src/constants/versions.ts index ee6ab29d089..8aa7b00498b 100644 --- a/src/constants/versions.ts +++ b/src/constants/versions.ts @@ -1,9 +1,9 @@ export const versions = { - ANDROID_VERSION: "2.14.6", - ANDROID_DEVPREVIEW: "1.36.5-dev-preview.0", - ANDROID_V1_VERSION: "1.38.8", - ANDROID_V1_GEO_VERSION: "1.0.1", - ANDROID_V1_KOTLIN_VERSION: "0.22.8", - ANDROID_SDK_VERSION: "2.73.0", - KOTLIN_SDK_VERSION: "0.29.1-beta" + ANDROID_VERSION: '2.14.6', + ANDROID_DEVPREVIEW: '1.36.5-dev-preview.0', + ANDROID_V1_VERSION: '1.38.8', + ANDROID_V1_GEO_VERSION: '1.0.1', + ANDROID_V1_KOTLIN_VERSION: '0.22.8', + ANDROID_SDK_VERSION: '2.73.0', + KOTLIN_SDK_VERSION: '0.29.1-beta' };