-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
57 lines (57 loc) · 1.5 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
51
52
53
54
55
56
57
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022", "DOM"],
"allowJs": false,
"jsx": "react-jsx",
"rootDir": ".",
"outDir": "dist",
"noEmit": false,
"declaration": true,
"emitDeclarationOnly": false,
"declarationMap": false,
"sourceMap": true,
"removeComments": false,
"noEmitOnError": false,
"importHelpers": true,
"downlevelIteration": false,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitBOM": false,
"newLine": "LF",
"pretty": true,
"allowUnreachableCode": false,
"stripInternal": true,
"allowUnusedLabels": false,
"baseUrl": ".",
"importsNotUsedAsValues": "remove",
"preserveValueImports": false,
"paths": {
"amos": ["./packages/amos/src"],
"amos/react": ["./packages/amos/src/react"],
"amos-*": ["./packages/amos-*/src"],
"@site/*": ["./website/*"]
},
"skipLibCheck": true,
"noImplicitOverride": true
},
"include": ["packages", "scripts", "examples", "website", "jest.setup.ts"],
"exclude": [
"dist",
"packages/amos/react",
"packages/amos/typescript",
"packages/amos/babel",
"node_modules"
]
}