@zeix/cause-effect
Version:
Cause & Effect - reactive state management with signals.
34 lines (29 loc) • 761 B
JSON
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
// Declarations
"declaration": true,
"declarationDir": "./",
"emitDeclarationOnly": true,
},
"include": ["./*.ts", "./lib/*.ts"],
"exclude": ["node_modules", "test"],
}