[READ-ONLY] Mirror of https://github.com/just-cameron/demo-todo-api. A demo todo application.
0

Configure Feed

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

demo-todo-api / tsconfig.json
369 B 16 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 "resolveJsonModule": true 13 }, 14 "include": ["src/**/*"], 15 "exclude": ["node_modules", "dist"] 16}