forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (31 loc) · 906 Bytes
/
tsconfig.base.json
File metadata and controls
37 lines (31 loc) · 906 Bytes
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
{
"compilerOptions": {
"target": "ES2018",
"lib": ["dom", "es2017", "es2018", "es2019", "es2020", "es2021", "es2022"],
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useUnknownInCatchVariables": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"importHelpers": true,
"noEmitOnError": true,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"pretty": true,
"preserveWatchOutput": true,
"incremental": true,
"composite": true
}
}