forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
36 lines (31 loc) · 955 Bytes
/
tsconfig.base.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
{
"compilerOptions": {
"target": "es2015",
"module": "esnext",
"lib": ["dom", "es2017", "es2018", "es2019", "es2020", "es2021"],
"noEmitOnError": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"pretty": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"useUnknownInCatchVariables": true,
"preserveWatchOutput": true,
"plugins": [
{
"name": "typescript-styled-plugin"
}
]
}
}