-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.82 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
"baseUrl": ".",
"target": "es2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": false,
"noEmit": true,
"jsx": "react-jsx",
"types": ["vitest/globals"],
"paths": {
"@src/*": ["./src/*"],
"@app/*": ["./src/app/*"],
"@conf/*": ["./src/conf/*"],
"@components": ["./src/alchemy-components"],
"@components/*": ["./src/alchemy-components/*"],
"@graphql/*": ["./src/graphql/*"],
"@graphql-mock/*": ["./src/graphql-mock/*"],
"@images/*": ["./src/images/*"],
"@providers/*": ["./src/providers/*"],
"@utils/*": ["./src/utils/*"],
"@app/entityV1/*": ["./src/app/entity/*"],
"@app/entityV2/*": ["./src/app/entityV2/*"],
"@app/searchV2/*": ["./src/app/searchV2/*"],
"@app/domainV2/*": ["./src/app/domainV2/*"],
"@app/glossaryV2/*": ["./src/app/glossaryV2/*"],
"@app/homeV2/*": ["./src/app/homeV2/*"],
"@app/lineageV2/*": ["./src/app/lineageV2/*"],
"@app/previewV2/*": ["./src/app/previewV2/*"],
"@app/sharedV2/*": ["./src/app/sharedV2/*"],
"@types": ["./src/types.generated.ts"],
"@images": ["./src/images"]
}
},
"include": ["src", "src/conf/theme/styled-components.d.ts", "vite.config.ts", ".eslintrc.js", "functions"]
}