forked from Amazon-Q-Developer/amazon-q-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 673 Bytes
/
Copy pathtsconfig.json
File metadata and controls
21 lines (21 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// This tsconfig is for root TS scripts, e.g. those in scripts/
// If you are looking for the base config for subprojects, see packages/tsconfig.packages.json
{
"compilerOptions": {
"module": "node16",
"target": "es2021",
"moduleResolution": "node16",
"rootDir": ".",
"resolveJsonModule": true,
"strict": true,
"noUnusedLocals": true,
"noImplicitOverride": true,
"lib": ["dom", "es2021"],
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"esModuleInterop": true,
"incremental": true,
"noEmitOnError": false,
"skipLibCheck": true
}
}