-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (46 loc) · 1.01 KB
/
Copy pathtsconfig.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"compilerOptions": {
"ignoreDeprecations": "5.0",
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES2020",
"allowJs": true,
"noImplicitAny": false,
"noImplicitThis": true,
"noImplicitReturns": false,
"moduleResolution": "bundler",
"importHelpers": true,
"noUncheckedIndexedAccess": true,
"isolatedModules": true,
"strictNullChecks": false,
"strictBindCallApply": true,
"allowSyntheticDefaultImports": true,
"useUnknownInCatchVariables": false,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"skipLibCheck": true,
"types": ["node"],
"lib": [
"DOM",
"DOM.Iterable",
"ES2020",
"ES2022"
],
"paths": {
"@plugin/*": ["./src/features/leaflet/*"],
"react": ["./node_modules/preact/compat"],
"react-dom": ["./node_modules/preact/compat"],
"react/jsx-runtime": ["./node_modules/preact/jsx-runtime"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"src/**/*.test.ts",
"src/**/*.test.tsx"
]
}