-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
45 lines (45 loc) · 1.16 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
{
"compilerOptions": {
"module": "ES2020",
"target": "ES2020",
"lib": ["ES2020", "dom"],
"sourceMap": true,
"jsx": "react",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"typeRoots": [
"./node_modules/@types",
"./node_modules/@testing-library",
"./src/typings.d.ts",
"./src/global.typings.d.ts"
],
"paths": {
"@assets/*": ["node_modules/@patternfly/react-core/dist/styles/assets/*"],
"@images/*": ["public/images/*"],
"@/*": ["src/*"],
"@S/*": ["src/Slices/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", "**/*.jsx", "jestSetupAfterEnv.cjs"],
"exclude": ["node_modules"],
"ts-node": {
"compilerOptions": {
"module": "ES2020",
"target": "ES2020",
"esModuleInterop": true,
"types": ["cypress-file-upload"]
}
}
}