-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·24 lines (23 loc) · 702 Bytes
/
tsconfig.json
File metadata and controls
executable file
·24 lines (23 loc) · 702 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
{
"compilerOptions": {
"incremental": false,
"moduleResolution": "node",
"inlineSources": false,
"removeComments": false,
"sourceMap": false,
"target": "ES2018",
"skipLibCheck": true,
"lib": ["ESNEXT", "DOM"],
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"importHelpers": true,
"strict": true,
"resolveJsonModule": true,
},
"include": ["src/**/*", "test/**/*", "bench/**/*", "eslint.config.js"],
"exclude": ["node_modules"]
}