-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1.09 KB
/
Copy pathtsconfig.json
File metadata and controls
33 lines (33 loc) · 1.09 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
{
"compilerOptions": {
"strict": true,
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"allowImportingTsExtensions": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"paths": {
"@/*": ["./src/*"],
"@pos/core": ["./packages/pos-core/src"],
"@pos/core/*": ["./packages/pos-core/src/*"],
"@pos/storage": ["./packages/pos-storage/src"],
"@pos/storage/*": ["./packages/pos-storage/src/*"],
"@pos/ui": ["./packages/pos-ui/src"],
"@pos/ui/*": ["./packages/pos-ui/src/*"],
"@pos/module-sdk": ["./packages/module-sdk/src"],
"@pos/module-sdk/*": ["./packages/module-sdk/src/*"],
"@pos/module-registry": ["./packages/module-registry/src"],
"@pos/module-registry/*": ["./packages/module-registry/src/*"]
}
},
"include": ["src", "packages"]
}