@storm-software/tsconfig
Version:
A package containing shared TypeScript configuration files (tsconfig.json) used in Storm Software projects.
21 lines (19 loc) • 585 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Storm Software - Recommended TypeScript Config",
"extends": "@storm-software/tsconfig/base.json",
"compilerOptions": {
/* Base Options: */
"allowJs": true,
"isolatedModules": true,
"incremental": false,
"composite": false,
"verbatimModuleSyntax": true,
/* If transpiling with TypeScript: */
"sourceMap": true,
/* AND if you're building for a library: */
"declaration": true,
/* AND if you're building for a library in a monorepo: */
"declarationMap": true
}
}