-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
52 lines (52 loc) · 1.48 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
47
48
49
50
51
52
{
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"paths": {
"@cypress/*": ["cypress/*"],
"@fixtures/chakra": [
"src/fixtures/mocks/mock.chakra.react.factory.class.tsx"
],
"@fixtures/chakra/icons": [
"src/fixtures/mocks/mock.chakra.icon.factory.class.tsx"
],
"@fixtures/react/child": [
"src/fixtures/mocks/mock.component.child.factory.class.tsx"
],
"@fixtures/react/parent": [
"src/fixtures/mocks/mock.component.parent.factory.class.tsx"
],
"@fixtures/react/simple": [
"src/fixtures/mocks/mock.component.simple.factory.class.tsx"
],
"@JestConfig/*": ["jest/*"],
"@locales/*": ["public/locales/en/*"],
"@public/*": ["public/*"],
"@src/*": ["src/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es5"
},
"exclude": ["node_modules", "public", "coverage"],
"include": ["types.d/*.d.ts", "*.d.ts", "src/**/*.ts", "src/**/*.tsx"],
"ts-node": {
"require": ["tsconfig-paths/register"],
"swc": true,
"compilerOptions": {
"module": "commonjs"
}
}
}