Typescript configuration for my projects.
- NPM
npm i -D typescript @sadrasamadi/tsconfig
andnpm i tslib
- Yarn
yarn add -D typescript @sadrasamadi/tsconfig
andyarn add tslib
tsconfig.json
{
"extends": "@sadrasamadi/tsconfig",
"compilerOptions": {
"outDir": "dist"
},
"include": [
"src"
]
}
package.json
{
"scripts": {
"build": "tsc"
}
}