-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
24 lines (24 loc) · 881 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
24 lines (24 loc) · 881 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
{
"compilerOptions": {
"ignoreDeprecations": "6.0",
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@formwright/contract": ["packages/contract/src/index.ts"],
"@formwright/core": ["packages/core/src/index.ts"],
"@formwright/schema-builder": ["packages/schema-builder/src/index.ts"],
"@formwright/react-rhf": ["packages/react-rhf/src/index.ts"],
"@formwright/remote": ["packages/remote/src/index.ts"],
"@formwright/renderers-default": ["packages/renderers-default/src/index.ts"],
"@formwright/plugins-basic": ["packages/plugins-basic/src/index.ts"],
"@formwright/plugins-async": ["packages/plugins-async/src/index.ts"]
}
}
}