-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 832 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 832 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
25
26
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"allowJs": false,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noErrorTruncation": true, // prevents truncatation when hovering over type in VSCode
"module": "esnext",
"moduleResolution": "bundler",
"paths": {
// "@aws-amplify/data-schema-types": [
// "./packages/data-schema-types/src/index.ts"
// ],
// "@aws-amplify/data-schema": ["./packages/data-schema/src/index.ts"],
// "@aws-amplify/data-schema/internals": [
// "./packages/data-schema/src/internals/index.ts"
// ]
}
},
"exclude": ["**/node_modules", "**/dist", "**/lib-esm", "**/*js"]
}