-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.json
35 lines (35 loc) · 1003 Bytes
/
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
{
"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
"lib": ["DOM", "ES2020"],
"importHelpers": false,
"declaration": false,
"sourceMap": true,
"strict": true,
"removeComments": true,
"verbatimModuleSyntax": false,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"strictBindCallApply": true,
"stripInternal": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "Bundler",
"jsx": "react",
"esModuleInterop": true,
"rootDir": "./src",
"baseUrl": "./",
"noEmit": true,
"paths": {
"@": ["./src"],
"*": ["*", "node_modules/*"],
// workaround for: https://github.com/vitest-dev/vitest/issues/4567
"rollup/parseAst": ["./node_modules/rollup/dist/parseAst"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx", "docs/**/*.tsx"]
}