github.com/argoproj/argo-cd@v1.8.7/ui/src/app/tsconfig.json (about) 1 { 2 "compilerOptions": { 3 "outDir": "./../../dist/app", 4 "sourceMap": true, 5 "noImplicitAny": true, 6 "module": "esnext", 7 "moduleResolution": "node", 8 "target": "es5", 9 "jsx": "react", 10 "experimentalDecorators": true, 11 "noUnusedLocals": true, 12 "declaration": false, 13 "lib": [ 14 "es2017", 15 "dom" 16 ] 17 }, 18 "include": [ 19 "./**/*" 20 ], 21 "exclude": [ 22 "node_modules", 23 "./**/*.test.ts", 24 "./**/*.test.tsx" 25 ] 26 }