-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
39 lines (31 loc) · 916 Bytes
/
tsconfig.json
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
34
35
36
37
38
39
{
"compilerOptions": {
"outDir": ".tmp/tsbuildinfo/",
"composite": true,
"emitDeclarationOnly": true,
"declarationMap": true,
"target": "es2020",
"module": "es2020",
"moduleResolution": "node",
"esModuleInterop": true,
"allowJs": true,
"checkJs": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ESNext", "dom"]
// "listFiles": true,
// "noErrorTruncation": true,
// "extendedDiagnostics": true,
// TODO(esmodules): included to support require('file.json'). Remove on the switch to ES Modules.
// "resolveJsonModule": true,
},
"include": [
"types/*.d.ts",
"*.js",
"*.mjs",
// not third_party yet
// "node_modules/devtools-protocol/types/protocol.d.ts",
// TODO(esmodules): JSON files included via resolveJsonModule. Removable on the switch to ES Modules.
"package.json"
]
}