-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
57 lines (57 loc) · 1.49 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
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"removeComments": false,
"preserveConstEnums": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"noUncheckedIndexedAccess": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"target": "ES2022",
"outDir": "build",
"sourceMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowJs": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"noEmit": true,
"isolatedModules": true,
"incremental": true,
"baseUrl": ".",
"paths": {
"@app/*": ["src/app/*"],
"@pages/*": ["src/pages/*"],
"@entities/*": ["src/entities/*"],
"@shared/*": ["src/shared/*"],
"@features/*": ["src/features/*"],
"@widgets/*": ["src/widgets/*"],
"@assets/*": ["public/assets/*"]
},
"plugins": [
{
"name": "next"
}
]
},
"exclude": ["./build/**/*", "./node_modules/**/*", "**/*.cy.ts"],
"include": [
"next-env.d.ts",
"declarations.d.ts",
"**/*.ts",
"**/*.tsx",
"src/shared/ui/icons/icon.component.tsx",
"src/shared/ui/icon-button",
".next/types/**/*.ts"
]
}