-
Notifications
You must be signed in to change notification settings - Fork 14
/
tsconfig.json
41 lines (41 loc) · 1.21 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
{
"compilerOptions": {
"target": "es6",
"lib": ["es6", "dom", "dom.iterable", "esnext", "webworker"],
"jsxImportSource": "@emotion/react",
"jsx": "react-jsx",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": false,
"noUnusedParameters": false,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"downlevelIteration": true,
"baseUrl": "src",
"paths": {
"@root/*": ["./*"],
"@comp/*": ["./components/*"],
"@elem/*": ["./elements/*"],
"@config/*": ["./config/*"],
"@db/*": ["./db/*"],
"@styles": ["./styles/index.ts"],
"@styles/*": ["./styles/*"]
},
"noFallthroughCasesInSwitch": true
},
"include": ["./src/**/*"],
"exclude": [
"node_modules",
"./functions",
"src/**/*.test.ts",
"src/**/*.test.tsx"
]
}