@myway42/tsconfig
v1.0.0
Published
A base TSConfig for working.
Downloads
2
Readme
tsconfig
Add the package to your "devDependencies":
npm install --save-dev @myway42/tsconfigAdd to your tsconfig.json:
"extends": "@myway42/tsconfig/tsconfig.json"The tsconfig.json:
{
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"useDefineForClassFields": true,
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
/* Linting */
"strict": true
},
"$schema": "https://json.schemastore.org/tsconfig"
}