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