@storm-software/tsconfig
Version:
A package containing shared TypeScript configuration files (tsconfig.json) used in Storm Software projects.
32 lines (31 loc) • 917 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Storm Software - Base TypeScript Config",
"compileOnSave": false,
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"noLib": false,
"moduleResolution": "Bundler",
"moduleDetection": "force",
"pretty": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"strict": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"noFallthroughCasesInSwitch": true,
"importHelpers": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true
}
}