Created
July 25, 2024 03:58
-
-
Save WanLinLin/fb44c17fd54a40fcf4063c5c3e708199 to your computer and use it in GitHub Desktop.
tsc files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { spawnSync } from 'child_process' | |
import { writeFileSync, rmSync } from 'fs' | |
const tempTsConfig = './lint-staged-tsconfig.json' | |
const main = () => { | |
const files = process.argv.slice(2) | |
writeFileSync( | |
tempTsConfig, | |
JSON.stringify({ | |
extends: './tsconfig.json', | |
include: files, | |
}) | |
) | |
const { status } = spawnSync( | |
'npx', | |
['tsc', `-p`, tempTsConfig, '--noEmit', '--tsBuildInfoFile', 'false'], | |
{ | |
stdio: 'inherit', | |
} | |
) | |
rmSync(tempTsConfig) | |
process.exit(status) | |
} | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment