-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 1.04 KB
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 1.04 KB
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
{
"exclude": [
"./node_modules/**",
"./__fixtures__/screenshots/invalid.argos.json"
],
"compilerOptions": {
"paths": {
"@argos-ci/*": ["./packages/*/src"],
"@argos-ci/playwright/reporter": [
"./packages/playwright/src/reporter.ts"
],
"@argos-ci/storybook/test-runner": ["./packages/*/src/test-runner.ts"],
"@argos-ci/storybook/vitest": ["./packages/*/src/vitest.ts"],
"@argos-ci/storybook/vitest-plugin": [
"./packages/*/src/vitest-plugin.ts"
],
"@argos-ci/util/browser": ["./packages/util/src/browser.ts"]
},
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "bundler",
"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
}
}