Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@shopify/typescript-configs
Advanced tools
A set of typescript configuration files that can be extended.
@shopify/typescript-configs
In TypeScript, the configuration file can extend from a base file. This package provided a few common base configuration files to simplify TypeScript project setup.
To read more about how this extensibility works. See typescript handbook.
Below are two documentation we have also found useful to have on hand while setting up a configuration file.
$ yarn add --dev @shopify/typescript-configs
To start, create a tsconfig.json
in the root of your project.
A typical setup where the application sit in [project root]/app
folder is as follow:
{
"extends": "@shopify/typescript-configs/application.json",
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"paths": {"*": ["*", "app/*"]}
},
"include": ["./app/**/*", "./client/**/*", "./server/**/*", "./tests/**/*"]
}
Similarly for a react library project. Create a tsconfig.json
in the root of your project with a setup below assuming the library code sit in [project root]/src
folder.
{
"extends": "@shopify/typescript-configs/library.json",
"compilerOptions": {
"baseUrl": "./src",
"rootDir": "."
},
"include": ["./src/**/*"]
}
A configuration file is provided that included styles setup and a more conservative build target.
{
"extends": "@shopify/typescript-configs/dom.json",
"compilerOptions": {
"baseUrl": ".",
"rootDir": "."
}
}
A base configuration file is also provided if the above does not fit your need.
{
"extends": "@shopify/typescript-configs/base.json",
"compilerOptions": {
"baseUrl": ".",
"rootDir": "."
}
}
skipLibCheck: true
settingThere are times when the type failure occur inside of a library your project is consuming, and having skipLibCheck: true
does not resolved it. In this scenario, add an exclude
option to your tsconfig.json
.
eg.
{
"extends": "@shopify/typescript-configs/base.json",
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"exclude": ["./node_modules/**/*"]
}
}
FAQs
A set of typescript configuration files that can be extended.
We found that @shopify/typescript-configs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 18 open source maintainers 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.