This repository has no description
0

Configure Feed

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

semble / src / types / tsconfig.json
414 B 18 lines
1{ 2 "compilerOptions": { 3 "target": "ES2020", 4 "module": "CommonJS", 5 "lib": ["ES2020"], 6 "outDir": "./dist", 7 "rootDir": "./src", 8 "strict": true, 9 "esModuleInterop": true, 10 "skipLibCheck": true, 11 "forceConsistentCasingInFileNames": true, 12 "declaration": true, 13 "declarationMap": true, 14 "sourceMap": true 15 }, 16 "include": ["src/**/*"], 17 "exclude": ["node_modules", "dist"] 18}