-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
49 lines (49 loc) · 1005 Bytes
/
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
{
"extends": "@sindresorhus/tsconfig",
"compilerOptions": {
"outDir": "./dist/",
"lib": [
"ES2022"
],
"target": "ES2022",
"declarationMap": true,
"sourceMap": true,
"importsNotUsedAsValues": "remove",
"isolatedModules": true,
"esModuleInterop": true,
"allowJs": true,
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noUncheckedIndexedAccess": false,
"resolveJsonModule": true,
"typeRoots": [
"./node_modules/@types",
"./src/typings",
],
"paths": {
"react": [
"./node_modules/preact/compat/"
],
"react-dom": [
"./node_modules/preact/compat/"
]
},
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
],
"ts-node": {
"esm": true,
"transpileOnly": true,
"files": true,
"experimentalResolver": true
}
}