kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 33 lines 824 B view raw
1{ 2 "compilerOptions": { 3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", 4 "target": "ES2020", 5 "useDefineForClassFields": true, 6 "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 "module": "ESNext", 8 "skipLibCheck": true, 9 10 /* Bundler mode */ 11 "moduleResolution": "bundler", 12 "resolveJsonModule": true, 13 "allowImportingTsExtensions": true, 14 "isolatedModules": true, 15 "moduleDetection": "force", 16 "noEmit": true, 17 "jsx": "react-jsx", 18 19 /* Linting */ 20 "strict": true, 21 "noUnusedLocals": true, 22 "noUnusedParameters": true, 23 "noFallthroughCasesInSwitch": true, 24 "noUncheckedSideEffectImports": true, 25 "paths": { 26 "@/*": ["./src/*"], 27 "@i18n/*": ["../../i18n/*"] 28 } 29 }, 30 "include": ["src", "../../i18n"], 31 "exclude": ["../api/**/*", "../docs/**/*", "../../packages/**/*"], 32 "baseUrl": "." 33}