-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (29 loc) · 973 Bytes
/
tsconfig.json
File metadata and controls
33 lines (29 loc) · 973 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
{
"compilerOptions": {
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2022",
"allowJs": true,
"moduleDetection": "force",
"isolatedModules": true,
"verbatimModuleSyntax": true,
"strict": true,
"noUncheckedSideEffectImports": true,
"noUncheckedIndexedAccess": false, // TODO: Use better methods
"noImplicitOverride": true,
"module": "Preserve",
"noEmit": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"forceConsistentCasingInFileNames": true,
"paths": {
"@hanekokoro-ui/styled-system/*": ["./styled-system/*"],
// Slate Solid had incompatable types with moduleResolution: Bundler
// See https://arethetypeswrong.github.io/?p=%40slate-solid%2Fcore
"@slate-solid/core": ["./node_modules/@slate-solid/core/dist/index.d.ts"]
}
},
"exclude": ["node_modules/"]
}