mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
28 lines
600 B
JSON
28 lines
600 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./../../dist/app",
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"declaration": false,
|
|
"lib": [
|
|
"es2017",
|
|
"dom"
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"./**/*.test.ts",
|
|
"./**/*.test.tsx"
|
|
]
|
|
}
|