-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (27 loc) · 776 Bytes
/
Copy pathtsconfig.json
File metadata and controls
28 lines (27 loc) · 776 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
{
"compilerOptions": {
"target": "ES2021",
"module": "commonjs",
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"rootDir": "./src",
"outDir": "./dist",
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": true,
"strictBindCallApply": false,
"useUnknownInCatchVariables": false,
"sourceMap": true,
"inlineSources": true,
// Set `sourceRoot` to "/" to strip the build path prefix
// from generated source code references.
// This improves issue grouping in Sentry.
"sourceRoot": "/"
},
"include": ["src", "types"],
"exclude": ["dump/*.ts"]
}