obj-console
Version:
Shows JS objects in terminal with custom format in VSCode colors
14 lines (13 loc) • 381 B
JSON
{
"extends": "./tsconfig.json",
"compilerOptions": {
// source maps are necessery in DEV mode to show right refs,
// but it optional in PRODUCTION mode
"sourceMap": false,
// this flag accelerates sequential build but creates files,
// which is unnecessary in dist folder
"incremental": false,
"declaration": true,
"removeComments": false
}
}