UNPKG

@storm-software/tsconfig

Version:

A package containing shared TypeScript configuration files (tsconfig.json) used in Storm Software projects.

31 lines (30 loc) 877 B
{ "$schema": "https://json.schemastore.org/tsconfig", "display": "Storm Software - Library TypeScript Config", "compileOnSave": false, "compilerOptions": { /* Base Options: */ "esModuleInterop": true, "skipLibCheck": true, "target": "es2022", "allowJs": true, "resolveJsonModule": true, "moduleDetection": "force", "isolatedModules": true, "verbatimModuleSyntax": true, /* Strictness */ "strict": true, "noUncheckedIndexedAccess": true, "noImplicitOverride": true, /* If transpiling with TypeScript: */ "module": "NodeNext", "sourceMap": true, /* AND if you're building for a library: */ "declaration": true, /* AND if you're building for a library in a monorepo: */ "composite": true, "declarationMap": true, /* If your code doesn't run in the DOM: */ "lib": ["es2022"] } }