diff --git a/.vscode/settings.json b/.vscode/settings.json index 466528b..c391506 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,6 +3,7 @@ "biomejs", "clsx", "cmdk", + "commitlint", "kanpeki", "picocolors", "rehype", diff --git a/package.json b/package.json index 3be07b8..6d031a8 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,6 @@ "husky": "^9.1.4", "lint-staged": "^15.2.9", "rimraf": "^6.0.1", - "tsc-files": "^1.1.4", "turbo": "^2.0.11", "typescript": "^5.5.3" }, @@ -35,7 +34,7 @@ "biome check --fix --no-errors-on-unmatched" ], "*.{ts,tsx}": [ - "tsc-files --noEmit" + "bash -c 'pnpm run type-check'" ] }, "config": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3cdf8b7..91f9b4d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -38,9 +38,6 @@ importers: rimraf: specifier: ^6.0.1 version: 6.0.1 - tsc-files: - specifier: ^1.1.4 - version: 1.1.4(typescript@5.5.3) turbo: specifier: ^2.0.11 version: 2.0.11 @@ -3735,12 +3732,6 @@ packages: ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - tsc-files@1.1.4: - resolution: {integrity: sha512-RePsRsOLru3BPpnf237y1Xe1oCGta8rmSYzM76kYo5tLGsv5R2r3s64yapYorGTPuuLyfS9NVbh9ydzmvNie2w==} - hasBin: true - peerDependencies: - typescript: '>=3' - tsconfig-paths@4.2.0: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} @@ -7674,10 +7665,6 @@ snapshots: ts-interface-checker@0.1.13: {} - tsc-files@1.1.4(typescript@5.5.3): - dependencies: - typescript: 5.5.3 - tsconfig-paths@4.2.0: dependencies: json5: 2.2.3 diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 594d7f9..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "compilerOptions": { - "esModuleInterop": true, - "skipLibCheck": true, - "target": "es2022", - "allowJs": true, - "resolveJsonModule": true, - "moduleDetection": "force", - "isolatedModules": true, - - "strict": true, - - "declaration": true, - "declarationMap": true, - - "moduleResolution": "Bundler", - "module": "esnext", - "noEmit": true, - - "lib": ["es2022", "dom", "dom.iterable"] - } -}