forked from hmrc/odx-paye-iabd-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 736 Bytes
/
Copy pathtsconfig.json
File metadata and controls
23 lines (23 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"outDir": "./dist/",
"experimentalDecorators": true,
"strict": true,
"sourceMap": true,
"module": "ES2022",
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"moduleResolution": "Node",
"jsx": "react-jsx",
"allowJs": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"strictNullChecks": false,
// Need to specify typeRoots to find the types and types to constrain
// where to look in @pega (to only get pcore-pconnect-typedefs)
"typeRoots": ["node_modules/@types", "node_modules/@pega"],
"types": ["jest", "@testing-library/jest-dom", "pcore-pconnect-typedefs"]
}
}