-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 678 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 678 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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"types": ["node"],
"esModuleInterop": true,
"module": "Preserve",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"strictNullChecks": false, // will be more strict in future releases
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": false,
"outDir": "./dist",
"strict": true,
"declaration": true,
"pretty": true,
"skipLibCheck": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true
},
"include": ["src"],
"exclude": ["dist/**/*", "*/tests/**/*"]
}