forked from argos-ci/argos-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 802 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 802 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
{
"exclude": ["node_modules/**", "__fixtures__/screenshots/invalid.argos.json"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@argos-ci/*": ["packages/*/src"],
"@argos-ci/util/browser": ["packages/util/src/browser.js"],
"@argos-ci/playwright/reporter": ["packages/playwright/src/reporter.js"]
},
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "node",
"target": "ES2022",
"importHelpers": true,
"declaration": true,
"sourceMap": false,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"skipLibCheck": true,
"noUncheckedIndexedAccess": true
}
}