-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.33 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",
"module": "esnext",
"moduleResolution": "node",
"baseUrl": "src",
"esModuleInterop": true,
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"jsx": "react-jsx",
"typeRoots": ["node_modules/@types"],
"types": ["node"],
"lib": ["es6", "dom", "dom.iterable", "esnext", "es2018"],
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"downlevelIteration": true,
"strict": true,
"paths": {
"@mui/styled-engine": ["./node_modules/@mui/styled-engine-sc"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"node_modules/@types",
"src/setProxy.js",
"src/components/editor/ResizableNodeSelected.jsx",
"src/pages/roadmap/posts/postedRoadmap.jsx",
"src/components/user/userProfile.jsx",
"src/components/editor/RoadMapEditor.jsx",
"src/pages/main/commentPage.tsx",
"src/pages/main/searchByKeyword/Roadmap.jsx",
"src/components/roadmaps/posts/RoadmapInfo.jsx"
]
}