-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
tsconfig.json
49 lines (49 loc) · 1.41 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
42
43
44
45
46
47
48
49
{
"compilerOptions": {
/*
Module resolution, imports
*/
"module": "NodeNext",
"moduleResolution": "NodeNext",
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
/*
JS
*/
"allowJs": true,
"checkJs": true,
/*
Emit
*/
"target": "ESNext",
"emitDeclarationOnly": true,
"declarationMap": true,
"declaration": true,
"outDir": "dist/types",
/*
Types
*/
"types": ["@total-typescript/ts-reset"],
"lib": ["DOM", "DOM.Iterable", "DOM.AsyncIterable", "ESNext"],
"jsx": "preserve",
"jsxImportSource": "solid-js",
/*
Use source files locally
*/
"customConditions": ["@solid-devtools/source"],
/*
Checking
*/
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
},
"exclude": [
"**/node_modules/**/*",
"**/dist/**/*",
]
}