-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
47 lines (43 loc) · 1.27 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
47
{
"compilerOptions": {
"noEmit": true,
"allowJs": false,
"checkJs": false,
"skipLibCheck": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowUnreachableCode": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"declaration": true,
"declarationDir": "./dist",
"noUnusedLocals": true,
"module": "esnext",
"target": "esnext",
"jsx": "preserve",
"jsxImportSource": "react",
"removeComments": true,
"pretty": true,
"strict": true,
"outDir": "./dist",
"sourceMap": true,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"importHelpers": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"allowImportingTsExtensions": true,
"baseUrl": "./",
"paths": {
"react": ["preact/compat"],
"react-dom": ["preact/compat"],
"@types/react": ["preact/compat"],
"@types/react-dom": ["preact/compat"]
}
},
"include": ["src", "api", "pages"],
"exclude": []
}