Simple, single-user event aggregation platform, for use in personal websites and other related places.
event-streaming single-user events event-aggregation
at develop 31 lines 730 B view raw
1{ 2 "compilerOptions": { 3 "moduleResolution": "bundler", 4 "module": "esnext", 5 "target": "esnext", 6 7 "strict": true, 8 "allowSyntheticDefaultImports": true, 9 "allowUnreachableCode": false, 10 "allowUnusedLabels": false, 11 "noFallthroughCasesInSwitch": true, 12 "noImplicitAny": true, 13 "strictNullChecks": true, 14 "strictFunctionTypes": true, 15 "strictBindCallApply": true, 16 "strictPropertyInitialization": true, 17 "noImplicitReturns": true, 18 "noImplicitThis": true, 19 "noUnusedLocals": false, 20 "noUnusedParameters": true, 21 "alwaysStrict": true, 22 23 "baseUrl": "src", 24 "paths": { 25 "$lib/*": ["lib/*"], 26 }, 27 }, 28 29 "include": ["src"], 30 "exclude": ["node_modules", ".git"], 31}