-
-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 712 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 712 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"esModuleInterop": true,
"isolatedModules": true,
"incremental": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"noEmit": true,
"lib": ["dom", "dom.iterable", "esnext"],
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"noImplicitReturns": false,
"resolveJsonModule": true,
"exactOptionalPropertyTypes": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"stripInternal": true,
"ignoreDeprecations": "6.0",
"types": ["vitest/globals", "node"],
"verbatimModuleSyntax": true
}
}