forked from chibicode/Y-Combinator-for-Non-programmers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.dev.json
33 lines (33 loc) · 841 Bytes
/
tsconfig.dev.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
{
"compilerOptions": {
"incremental": true,
"target": "esnext",
"module": "esnext",
"resolveJsonModule": true,
"jsx": "preserve",
"allowJs": true,
"moduleResolution": "node",
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"baseUrl": ".",
"lib": ["dom", "esnext"],
"paths": {
"src/*": ["src/*"],
"test/*": ["test/*"],
"scripts/*": ["scripts/*"],
"*": ["node_modules/*", "src/types/*"]
},
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"outDir": "./outDir/tsconfig.dev.json/",
"noEmit": false
},
"include": ["./src", "./pages"],
"exclude": ["node_modules"]
}