-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (33 loc) · 908 Bytes
/
tsconfig.json
File metadata and controls
37 lines (33 loc) · 908 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
37
{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": false,
"useDefineForClassFields": true,
// "experimentalDecorators": false,
// "useDefineForClassFields": true,
"module": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"jsx": "preserve",
"jsxImportSource": "@gracile-labs/jsx",
// "emitDeclarationOnly": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
// "outDir": "dist",
// "rootDir": "./src/lib"
},
"include": ["src"]
}