mirror of
https://github.com/quay/quay.git
synced 2026-01-26 06:21:37 +03:00
19 lines
415 B
JSON
19 lines
415 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"types": ["cypress", "node"]
|
|
},
|
|
"include": ["src", "**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|