mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-01 15:37:32 +08:00
24 lines
597 B
JSON
24 lines
597 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "es2020",
|
|
"moduleResolution": "node",
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
// Necessary for now, was previously the default setting
|
|
"resolvePackageJsonExports": false
|
|
},
|
|
"include": ["./src/**/*.ts"]
|
|
} |