-
Notifications
You must be signed in to change notification settings - Fork 25
/
tsconfig.json
41 lines (41 loc) · 1.01 KB
/
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
36
37
38
39
40
41
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"baseUrl": ".",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"noEmit": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vinxi/types/client"],
"paths": {
"~/*": ["./src/*"]
}
},
"exclude": ["scripts", "./src/misc/opengraph"],
"ts-node": {
"transpileOnly": true,
"esm": true,
"experimentalSpecifierResolution": "node"
},
"mdx": {
"checkMdx": true
}
}