-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
43 lines (37 loc) · 1011 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
{
"compilerOptions": {
"tsBuildInfoFile": ".tsbuildinfo",
"incremental": true,
"allowJs": true,
"checkJs": true,
"noEmit": true,
"strict": true,
"exactOptionalPropertyTypes": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"preserveValueImports": false,
"module": "Node16",
"moduleResolution": "Node16",
"verbatimModuleSyntax": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"target": "esnext",
"types": ["./src/types.d.ts", "node"]
},
"files": [
"eslint.config.js",
"src/types.d.ts",
"src/index.ts",
"rollup.config.js"
],
"include": ["src/**/*.ts", "src/**/*.d.ts"],
"exclude": ["dist/**/*"]
}