-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 973 Bytes
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 973 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"compilerOptions": {
"module": "Node16",
"target": "ES2024",
"outDir": "dist",
"lib": [
"ES2024",
"dom"
],
"alwaysStrict": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": true,
"inlineSources": true,
"moduleResolution": "node16",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"pretty": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": false,
"strictFunctionTypes": true,
"strictNullChecks": true
},
"include": [
"src/",
"eslint.config.ts"
],
"exclude": [
"node_modules"
],
"compileOnSave": false
}