generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathtsconfig.json
27 lines (27 loc) · 882 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "Preserve",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": ["vitest/globals", "mdx", "vite/client"],
"noImplicitAny": true,
"inlineSourceMap": true,
"paths": {
"@trussworks/react-uswds/lib/*": ["./node_modules/@trussworks/react-uswds/lib/*"]
}
},
"include": ["./src", "./e2e", "./__mocks__", "playwright.config.ts", "eslint.config.js", "./pa11y-net-logger.js"],
"references": [{ "path": "./tsconfig.node.json" }]
}