-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (32 loc) · 1.07 KB
/
Copy pathtsconfig.json
File metadata and controls
33 lines (32 loc) · 1.07 KB
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
{
"compilerOptions": {
"target": "es6",
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noEmit": true,
"noImplicitAny": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"module": "esnext",
"baseUrl": "src", // This must be specified if "paths" is.
"paths": {
// "@component/*": ["Components/views/*"],
// "@common/*": ["src/Components/Common/*"],
// "@assets/*": ["Components/assets/*"],
// "@shared/*": ["app/_shared/*"],
// "@helpers/*": ["helpers/*"]
},
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
// "jsx": "preserve",
"incremental": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "declarations.d.ts", "src/Components/Auth/Signup.jsx", "src/main.jsx"],
"exclude": ["node_modules"]
}