mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-24 16:30:27 +08:00
24 lines
592 B
JSON
24 lines
592 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "es6",
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@tests/*": ["tests/*"]
|
|
},
|
|
"outDir": "./dist/build",
|
|
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUncheckedIndexedAccess": true
|
|
},
|
|
"vueCompilerOptions": {
|
|
"target": 2.7
|
|
},
|
|
"include": ["./types/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx", "./src/**/*.vue", "./tests/**/*.ts"]
|
|
}
|