-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 811 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 811 Bytes
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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./source",
"paths": { "@/*": ["./*"] },
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"lib": ["DOM", "DOM.Iterable", "ESNEXT"],
"module": "CommonJS",
"moduleResolution": "Node",
"noEmit": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"outDir": "./build",
"resolveJsonModule": true,
"rootDir": "./source",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext",
"tsBuildInfoFile": "./build-cache"
},
"exclude": ["node_modules"],
"include": ["source"]
}