-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·106 lines (98 loc) · 2.62 KB
/
Copy pathtsconfig.json
File metadata and controls
executable file
·106 lines (98 loc) · 2.62 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"include": ["src", "packages", "doc/src"],
"exclude": ["node_modules", "**/__tests__/*.ts"],
"compilerOptions": {
// Module resolution
"baseUrl": ".",
"lib": ["dom", "esnext"],
"maxNodeModuleJsDepth": 0,
"moduleResolution": "node",
"noResolve": false,
"noLib": false,
"paths": {
"rz/*": ["./src/*"],
"pkg/*": ["./packages/*"],
"doc/*": ["./doc/src/*"]
},
"preserveSymlinks": false,
"resolveJsonModule": true,
// "types": [],
"typeRoots": ["node_modules/@types", "./packages/src/types"],
// Compiler
"allowJs": false,
"checkJs": false,
"composite": false,
"disableSizeLimit": false,
// "incremental": true,
// "outDir": "dist",
// "outFile": "dist/main.js",
// "rootDir": ".",
// "rootDirs": [],
"plugins": [],
"watch": true,
// JSX
"jsx": "preserve",
"jsxFactory": "h",
// Lint
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": false,
"keyofStringsOnly": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitThis": false,
"noImplicitReturns": false,
"noStrictGenericChecks": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"skipLibCheck": false,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
// Codegen
"declaration": false,
// "declarationDir": "dist/types",
"declarationMap": false,
"emitDeclarationOnly": false,
"emitDecoratorMetadata": false,
"inlineSourceMap": false,
"inlineSources": true,
"isolatedModules": false,
"module": "esnext",
"noEmit": false,
"noEmitOnError": false,
"noImplicitUseStrict": false,
"preserveConstEnums": false,
"pretty": true,
"removeComments": false,
"sourceMap": true,
"stripInternal": false,
"target": "es5",
// CLI output
"diagnostics": false,
"listEmittedFiles": false,
"listFiles": false,
"noErrorTruncation": false,
"preserveWatchOutput": false,
"traceResolution": false,
// Helper
"downlevelIteration": false,
"esModuleInterop": false,
"importHelpers": false,
"noEmitHelpers": false,
// Encoding
"charset": "UTF-8",
"emitBOM": false,
"newLine": "LF"
// Debugger
// "mapRoot": "",
// "sourceRoot" "",
}
}