forked from kubevirt-ui/kubevirt-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 840 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": ["es2016", "es2019", "es2020.promise", "dom", "dom.iterable", "ES2021.String"],
"module": "esnext",
"moduleResolution": "node",
"noUnusedLocals": true,
"outDir": "dist",
"paths": {
"@catalog/*": ["src/views/catalog/*"],
"@kubevirt-utils": ["src/utils"],
"@kubevirt-utils/*": ["src/utils/*"],
"@overview/*": ["src/views/clusteroverview/*"],
"@virtualmachines/*": ["src/views/virtualmachines/*"],
"react": ["./node_modules/react", "./node_modules/@types/react"]
},
"skipLibCheck": true,
"sourceMap": true,
"target": "es2016"
},
"exclude": ["**/node_modules", "**/dist"],
"include": ["src", "images"]
}