-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (36 loc) · 1 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "es2015", "es2020"],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
"esModuleInterop": true,
"isolatedModules": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"resolveJsonModule": true,
"allowJs": true,
"assumeChangesOnlyAffectDirectDependencies": true,
"baseUrl": ".",
"types": ["@emotion/react/types/css-prop"],
"paths": {
"src/*": ["./src/*"]
},
"typeRoots": ["src/types", "node_modules/@types"]
},
"watchOptions": {
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
"fallbackPolling": "dynamicPriority"
},
"exclude": ["node_modules", "public", ".cache"],
"include": ["./src/**/*"]
}