-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
85 lines (84 loc) · 2.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"],
"@app/*": ["./src/app/*"],
"@api/*": ["./src/app/api/*"],
"@abi/*": ["./src/abi/*"],
"@lib/*": ["./src/lib/*"],
"@data/*": ["./src/app/data/*"],
"@state/*": ["./src/state/*"],
"@Components/*": ["./src/components/*"],
"@Svg/*": ["./src/svg/*"],
"@public/*": ["./public/*"],
"@utils/*": ["./utils/*"],
"@enums/*": ["./enums/*"],
"@config/*": ["./config/*"]
},
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"outDir": "./dist",
"baseUrl": ".",
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"noEmitOnError": true,
"emitDeclarationOnly": false,
"declarationMap": true,
"composite": true,
// linter checks
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
// advanced
"verbatimModuleSyntax": false,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"stripInternal": true,
"resolveJsonModule": true
},
"files": [
"src/abi/deal_client.js",
"src/abi/Payment.json",
"src/app/demo/page.tsx",
"config/app.ts",
//"src/app/test/page.jsx",
"test/jest-e2e.ts",
"tsconfig.json"
],
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/abi/**/*.json",
"test/**/*.ts",
"next-env.d.ts",
".next/types/**/*.ts",
"prisma/generated/**/*.ts",
"enums/**/*.ts",
"config/**/*.ts",
"public/**/*.ts",
"utils/**/*.ts"
],
"exclude": ["node_modules", "./jest.config.ts", "./prisma/seed.ts", "hardhat/*.ts"]
}