forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (29 loc) · 1017 Bytes
/
tsconfig.json
File metadata and controls
33 lines (29 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"extends": "@vue/tsconfig/tsconfig.json",
"compilerOptions": {
"target": "es2022",
"module": "es2022",
"moduleResolution": "Bundler",
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@tests/*": ["tests/*"],
"@fortawesome/fontawesome-common-types": [
"./node_modules/@fortawesome/fontawesome-common-types/index"
]
},
"outDir": "./dist/build",
"allowJs": true,
"checkJs": false,
"allowSyntheticDefaultImports": true,
"noUncheckedIndexedAccess": true,
// Necessary for now, was previously the default setting
// See more at https://github.com/vuejs/tsconfig#migrating-from-typescript--50
"resolvePackageJsonExports": false
},
"vueCompilerOptions": {
"target": 2.7
},
"include": ["./types/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx", "./src/**/*.vue", "./tests/**/*.ts"]
}