This repository was archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
88 lines (75 loc) · 2.08 KB
/
tsconfig.json
File metadata and controls
88 lines (75 loc) · 2.08 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{"$schema":"https://json.schemastore.org/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"baseUrl": "./",
"rootDir": "./src",
"outDir": "./dist",
"paths": {
"~/*": ["./src/*" ],
"Components/*": ["./src/Components/*"],
"Examples/*": ["./src/Examples/*" ],
"Layouts/*": ["./src/Layouts/*" ],
"Pages/*": ["./src/pages/*" ],
"Public/*": ["./public/*" ]
},
"lib": [
"ESNext",
"DOM.Iterable",
"DOM",
"ScriptHost"
],
"types": [
"node",
"svelte",
"vite/client"
],
"moduleResolution": "Node",
"jsx": "preserve",
"jsxImportSource": "solid-js",
"noEmit": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"isolatedModules": true,
"resolveJsonModule": true,
"useDefineForClassFields": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noStrictGenericChecks": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strictBindCallApply": true,
"strictFunctionTypes": false,
"strictNullChecks": false,
"strictPropertyInitialization": false
},
"include": [
"**/*.d.ts",
"./src/**/*.astro",
"./src/**/*.cjs",
"./src/**/*.js",
"./src/**/*.jsx",
"./src/**/*.md",
"./src/**/*.mdx",
"./src/**/*.mjs",
"./src/**/*.svelte",
"./src/**/*.ts",
"./src/**/*.tsx",
"./src/**/*.vue"
],
"exclude": [
"node_modules"
]
}