-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
executable file
·60 lines (60 loc) · 1.59 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
{
"compilerOptions": {
"target": "es2015",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": "./src",
"paths": {
"@/*": [
"./*"
]
},
"incremental": true
},
"exclude": [
"node_modules"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"src/components/button/index.tsj",
"src/pages/terms-of-service.js",
"src/pages/privacy.js",
"src/pages/index.js",
"src/pages/_document.js",
"src/pages/_app.js",
"src/lib/analytics/index.js",
"src/components/video-section/index.js",
"src/components/social-proof/index.js",
"src/components/product-section/StreamSection.js",
"src/components/product-section/ProductFooter.js",
"src/components/product-section/index.js",
"src/components/product-section/BountySection.js",
"src/components/product-section/AccountingSection.js",
"src/components/pricing-table/index.js",
"src/components/page/index.js",
"src/components/navigation/index.js",
"src/components/list-section/index.js",
"src/components/header/index.js",
"src/components/footer/index.js",
"src/components/feature-section/index.js",
"src/components/faq/index.js",
"src/components/cases-section/index.js",
"src/components/button/index.js"
]
}