-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
32 lines (32 loc) · 878 Bytes
/
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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": false,
"target": "es6",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"package.json": ["package.json"]
},
"types": ["node", "jest", "@testing-library/jest-dom"],
"typeRoots": ["./node_modules/@types"],
"incremental": true
},
"exclude": ["node_modules", "cypress", "cypress.config.ts"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}