github.com/argoproj/argo-cd/v2@v2.10.9/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 "allowSyntheticDefaultImports": true, 12 "noUnusedLocals": true, 13 "declaration": false, 14 "lib": [ 15 "es2017", 16 "dom" 17 ] 18 }, 19 "include": [ 20 "./**/*" 21 ], 22 "exclude": [ 23 "node_modules", 24 "./**/*.test.ts", 25 "./**/*.test.tsx" 26 ] 27 }