[READ-ONLY] Mirror of https://github.com/flo-bit/shapecraft. flo-bit.dev/shapecraft/
0

Configure Feed

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

shapecraft / tsconfig.json
477 B 21 lines
1{ 2 "compilerOptions": { 3 "target": "ESNext", 4 "module": "ESNext", 5 "moduleResolution": "bundler", 6 "strict": true, 7 "noUnusedLocals": true, 8 "noUnusedParameters": true, 9 "esModuleInterop": true, 10 "skipLibCheck": true, 11 "forceConsistentCasingInFileNames": true, 12 "resolveJsonModule": true, 13 "isolatedModules": true, 14 "noEmit": true, 15 "declaration": true, 16 "paths": { 17 "@/*": ["./src/*"] 18 } 19 }, 20 "include": ["src", "tests"] 21}