-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
49 lines (48 loc) · 1.03 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
{
"include": [
"**/.eslintrc.cjs",
"**/.prettierrc.cjs",
"**/*.config.js",
"**/*.config.cjs",
"src/**/*",
"build.ts",
"publish.ts",
],
"exclude": [
"node_modules",
],
"compilerOptions": {
"noEmit": false,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"typeRoots": [
"node_modules/@types",
],
"types": [
"node",
],
"lib": [
"esnext",
],
"esModuleInterop": true,
"isolatedModules": true,
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"useDefineForClassFields": true,
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": false,
"experimentalDecorators": true,
"noImplicitOverride": true,
"forceConsistentCasingInFileNames": true,
"useUnknownInCatchVariables": true,
"exactOptionalPropertyTypes": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
}
}