-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
tsconfig.json
49 lines (49 loc) · 1.04 KB
/
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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": true,
"esModuleInterop": true,
"incremental": true,
"isolatedModules": true,
"module": "ESNext",
"moduleDetection": "force",
"moduleResolution": "bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"resolveJsonModule": true,
"strict": false,
"target": "es2022",
"useDefineForClassFields": false,
"verbatimModuleSyntax": true,
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"types": [
"node",
"jest",
"geojson",
"offscreencanvas"
],
},
"include": [
"./src/**/*",
"./test/unit/**/*",
"./test/usvg/**/*",
"./test/util/**/*",
"./vitest.config.*",
"./rollup.config.*"
],
"exclude": [
"./dist",
"./build",
"./node_modules",
"./src/style-spec/bin",
"./src/style-spec/dist",
"./test/unit/mock-worker/mockServiceWorker.js"
]
}