@storm-software/tsconfig
Version:
A comprehensive package containing shared TypeScript configuration files for various Storm Software projects.
21 lines (19 loc) • 555 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Storm Software - Core TypeScript Config",
"extends": "./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
}
}