
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
tsc
:yarn add tsc-hooks --dev
tsc
:yarn global add tsc-hooks
Example tsconfig.json
{
"compilerOptions": {
"outDir": "dist"
},
"include": [ "src/**/*" ],
"exclude": [ "src/**/*.txt" ],
"hooks": [ "copy-files" ] // hooks is a new property you can add to tsconfig to add custom hooks
/* For more hooks look below... */
}
Hooks are executed in the same order as defined in tsconfig.json
s hook property.
Hook ID | Description | Author |
---|---|---|
copy-files | tsc does not copy over extra files like .xml, .txt, .html, etc. after compilation. This hook fixes this by copying over files specified in "include". It also ignores files specified in "exclude". | Mark Auger (swimauger) |
file-permissions | This hook sets permissions to files after tsc has completed. | joel(dderjoel) |
<your-hook-id> | Learn how to create your own hook here | <Your name here> |
tsc
compiles index.ts
to ./dist/index.js
copy-files
-hook will copy the src/helperProgram.bin
to ./dist/helperProgram.bin
file-permissions
-hook will set the permissions r-xr--r-- to ./dist/{helperProgram.bin, index.js}
(assuming ./src/index.ts
has a shebang like #!/usr/bin/env node
, one can now execute ./dist/index.js
)Expample-tsconfig.json
:
{
"compilerOptions": {
"outDir": "dist"
},
"include": [ "src/index.ts", "src/helperProgram.bin" ],
"exclude": [ "src/**/*.txt" ],
"hooks": [ "copy-files", "file-permissions" ]
"filePermissions": {
"./dist/helperProgram.bin": "0544",
"./dist/index.js": "0544"
}
}
tsc
FAQs
Add tsc compiler hooks to your TypeScript project
We found that tsc-hooks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.