-
Notifications
You must be signed in to change notification settings - Fork 80
/
tsconfig.json
34 lines (34 loc) · 977 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
28
29
30
31
32
33
34
{
"ts-node": {
"require": ["tsconfig-paths/register"]
},
"compilerOptions": {
"useUnknownInCatchVariables": false,
"allowJs": true,
"noEmit": true,
"module": "ES2022",
"target": "es2022",
"jsx": "react",
"moduleResolution": "node",
"isolatedModules": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"strict": true,
"baseUrl": ".",
"paths": {
// must match babel.config.json
"api/*": ["./app/api/*"],
"app/*": ["./app/react/*"],
"shared/*": ["./app/shared/*"],
"UI": ["./app/react/UI"],
"UI/*": ["./app/react/UI/*"],
"V2/*": ["./app/react/V2/*"]
},
//TODO: solve conflict between @types from react dependencies
"skipLibCheck": true
},
"include": ["app", "external_modules", "database", "e2e", "scripts/scripts.v2/*"],
"exclude": ["fixtures", "dist", "prod", "**/*.cy.tsx"]
}