@bob-obringer/tsconfig
v0.4.1
Published
A collection of strict typescript configurations for my projects
Downloads
30
Maintainers
Readme
TypeScript Configuration
This library is a collection of TypeScript configuration files.
It is designed to provide a set of modern and strict base configurations for different types of TypeScript projects.
Installation
pnpm i -D @bob-obringer/tsconfignpm i --save-dev @bob-obringer/tsconfigyarn add --dev @bob-obringer/tsconfigUsage
The library includes several TypeScript configurations for different types of projects:
tsconfig.app.jsontsconfig.app.dom.jsontsconfig.base.jsontsconfig.library.jsontsconfig.library.dom.json
To use a configuration, extend your tsconfig.json file like so:
{
"extends": "@bob-obringer/tsconfig/isomorphic-library/tsconfig.json",
"compilerOptions": {
"outDir": "./dist"
},
"include": ["src/**/*.ts*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}Extend whichever configuration is appropriate for your project
Unfortunately, typescript treats paths as relative to to the tsconfig file that defines the paths, so they must be included in each individual package.
Development and Debug Configurations
In addition to each of the standard configurations, there are dev and
debug versions which include additional settings for development and debugging:
Usage
{
"extends": "@bob-obringer/tsconfig/debug/tsconfig.app.dom.json",
"compilerOptions": {
"outDir": "./dist"
},
"include": ["src/**/*.ts*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}