forked from kubevirt-ui/kubevirt-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (35 loc) · 1.13 KB
/
tsconfig.json
File metadata and controls
36 lines (35 loc) · 1.13 KB
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
34
35
36
{
"$schema": "https://schemastore.org/tsconfig",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowJs": true,
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": ["es2021", "dom"],
"module": "esnext",
"moduleResolution": "bundler",
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"paths": {
"@catalog/*": ["src/views/catalog/*"],
"@images/*": ["./images/*"],
"@kubevirt-extensions/*": ["src/extensions/*"],
"@kubevirt-utils": ["src/utils"],
"@kubevirt-utils/*": ["src/utils/*"],
"@lightspeed/*": ["src/views/lightspeed/*"],
"@multicluster/*": ["src/multicluster/*"],
"@overview/*": ["src/views/clusteroverview/*"],
"@search/*": ["src/views/search/*"],
"@topology/*": ["src/views/topology/*"],
"@virtualmachines/*": ["src/views/virtualmachines/*"]
},
"skipLibCheck": true,
"sourceMap": true,
"target": "es2021",
"typeRoots": ["node_modules/@types", "@types"]
},
"include": ["src/**/*", "images/**/*", "plugin-metadata.ts"]
}