-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
executable file
·46 lines (46 loc) · 1.31 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
{
"compilerOptions": {
"target": "es5",
"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",
"noImplicitReturns": true,
"typeRoots": ["src/@types", "node_modules/@types"],
"incremental": true,
"baseUrl": ".",
"paths": {
"@application/*": ["src/application/*"],
"@application": ["src/application"],
"@components/*": ["src/common/components/*"],
"@components": ["src/common/components"],
"@hooks/*": ["src/common/hooks/*"],
"@hooks": ["src/common/hooks"],
"@utils/*": ["src/common/utils/*"],
"@utils": ["src/common/utils"],
"@constants/*": ["src/constants/*"],
"@constants": ["src/constants"],
"@modules/*": ["src/modules/*"],
"@modules": ["src/modules"],
"@public/*": ["public/*"],
"@public": ["public"],
"@styles/*": ["src/styles/*"],
"@styles": ["src/styles"],
"@stores/*": ["src/stores/*"],
"@stores": ["src/stores"],
"@wallet/*": ["src/wallet/*"],
"@wallet": ["src/wallet"],
"@i18n": ["./i18n"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}