-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
50 lines (48 loc) · 1.47 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
48
49
50
{
"compilerOptions": {
"baseUrl": "./",
"allowJs": false,
"checkJs": false,
"emitDeclarationOnly": false,
"inlineSourceMap": true,
"declarationMap": false,
"composite": true,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"preserveSymlinks": true,
"pretty": true,
"sourceMap": false,
"strictPropertyInitialization": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"module": "ESNext",
"target": "ES5",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"jsxImportSource": "preact",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"strict": true,
"downlevelIteration": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"types": ["node"],
"paths": {
"$/*": ["src/*"],
"%/*": ["src/types/*"]
}
},
"include": ["src", "demo"],
"references": [{ "path": "./tsconfig.node.json" }]
}