-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
54 lines (54 loc) · 1.23 KB
/
tsconfig.json
File metadata and controls
54 lines (54 loc) · 1.23 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
{
"compilerOptions": {
"rootDir": ".",
"module": "Preserve",
"target": "ES6",
"lib": [
"ES2020",
"ES2023.Array",
"DOM"
],
"moduleResolution": "Bundler",
"resolveJsonModule": false,
"esModuleInterop": false,
"checkJs": true,
"skipLibCheck": false,
"skipDefaultLibCheck": false,
"allowJs": true,
"traceResolution": false,
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": true,
"disableSizeLimit": true,
"isolatedModules": false,
"removeComments": false,
"maxNodeModuleJsDepth": 0,
"disableReferencedProjectLoad": true,
"disableSourceOfProjectReferenceRedirect": true,
"extendedDiagnostics": false,
"diagnostics": false,
"assumeChangesOnlyAffectDirectDependencies": true,
"disableSolutionSearching": true,
"noEmit": true,
},
"include": [
"*.d.ts",
"types/*.d.ts",
"*.ts",
"strict.js",
"stringList.js",
"StringLiteralList.js",
"stringListFunction.js"
],
"exclude": [
"node_modules/punycode/punycode.js",
"node_modules",
"node_modules/*",
"node_modules/**/*",
"*.cjs",
"**/*.cjs",
"*.min.js",
"strict.min.js",
"**/*.min.js",
"stringList.min.js"
]
}