-
Notifications
You must be signed in to change notification settings - Fork 8
/
tsconfig.json
66 lines (66 loc) · 1.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"compilerOptions": {
"target": "esnext",
"incremental": true,
"resolvePackageJsonImports": false,
"resolvePackageJsonExports": false,
"assumeChangesOnlyAffectDirectDependencies": true,
"disableReferencedProjectLoad": true,
"disableSolutionSearching": true,
"disableSourceOfProjectReferenceRedirect": true,
"preserveWatchOutput": true,
"lib": ["esnext", "dom", "WebWorker"],
"allowJs": false,
"skipLibCheck": true,
"moduleDetection": "force",
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
"noEmit": false,
"jsx": "react-jsx",
"outDir": "./dist",
"baseUrl": ".",
"noUncheckedIndexedAccess": true,
"types": [],
"typeRoots": [],
"paths": {
"@/assets/*": ["src/assets/*"],
"@/pages/*": ["src/pages/*"],
"@/components/*": ["src/components/*"],
"@/generic/*": ["src/components/generic/*"],
"@/svg/*": ["src/components/svg/*"],
"@/constants/*": ["src/constants/*"],
"@/constants": ["src/constants/"],
"@/themes/*": ["src/themes/*"],
"@/hooks/*": ["src/hooks/*"],
"@/hooks": ["src/hooks/"],
"@/features/*": ["src/features/*"],
"@/features": ["src/features/"],
"@/utils/*": ["src/utils/*"],
"@/utils": ["src/utils/"],
"@/store": ["src/store/"],
"@/db/*": ["src/db/*"],
"@/db": ["src/db/"],
"@/types": ["src/types/index.ts"]
}
},
"files": ["./node_modules/@types/chrome/index.d.ts"],
"include": ["src"],
"exclude": [
"**/__test__/**",
"**/__mocks__/**",
"server",
"demo",
"node_modules",
"dist",
"dist-dev",
"dist-prop"
]
}