-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (33 loc) · 928 Bytes
/
tsconfig.json
File metadata and controls
36 lines (33 loc) · 928 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
34
35
36
{
"compilerOptions": {
"rootDir": ".",
"lib": ["ESNext", "DOM", "ES5"],
"outDir": "dist",
"allowJs": true,
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"sourceMap": true,
"declaration": true,
"noEmit": false,
"isolatedModules": true,
// Temporarily disable this until `solid-js` is released with this PR:
// https://github.com/solidjs/solid/pull/1913
"skipLibCheck": true,
// Type Checking / Syntax Rules
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"composite": true,
//"noImplicitAny": false,
//"strictNullChecks": false,
// jsx
"jsx": "preserve",
"jsxImportSource": "@solidtv/solid",
"types": ["solid-js"],
"customConditions": ["@solidtv/source"],
},
"include": ["src/**/*"]
}