-
Notifications
You must be signed in to change notification settings - Fork 384
Expand file tree
/
Copy pathtsconfig.dev.json
More file actions
39 lines (35 loc) · 1.02 KB
/
tsconfig.dev.json
File metadata and controls
39 lines (35 loc) · 1.02 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
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"noImplicitReturns": true,
"strict": true,
"strictBindCallApply": true,
"strictBuiltinIteratorReturn": true,
"strictFunctionTypes": true,
"alwaysStrict": false,
"exactOptionalPropertyTypes": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"noImplicitOverride": false,
"noImplicitThis": false,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"useUnknownInCatchVariables": false,
"target": "ES2022",
"lib": ["ES2022"],
"module": "Node16",
"moduleResolution": "node16",
"moduleDetection": "force",
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"baseUrl": ".",
"types": ["node"],
"typeRoots": ["./types", "./node_modules/@types"],
"skipLibCheck": false
},
"include": ["packages/**/*.js", "packages/**/*.mjs"],
"exclude": ["node_modules"]
}