-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
52 lines (52 loc) · 1.23 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
{
"extends": "./tsconfig.path.json",
"compileOnSave": false,
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"jsx": "react-jsx",
"allowJs": false,
"strict": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"baseUrl": ".",
"outDir": "lib",
"declaration": true,
"typeRoots": ["./node_modules/@types", "./types"],
"lib": ["dom", "esnext"],
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"noEmit": true
},
"exclude": [
"lib",
".next",
"out",
"node_modules",
"next.config.js",
"postcss.config.js",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.test.ts",
"**/*.test.tsx",
"coverage"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"src/components/molecules/index.ts",
"src/components/pages/ApartmentPage/index.tsx",
"src/components/pages/HousePage/index.jsx",
"wrap-with-provider.js"
]
}