-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 851 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
{
// Based on https://stackoverflow.com/a/61305579/14731, @tsconfig/node14/tsconfig.json and
// https://iamturns.com/typescript-babel/
"compilerOptions": {
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"target": "ES2022",
"lib": [
"DOM",
"ES2022"
],
"module": "Node16",
"moduleResolution": "Node16",
"strict": true,
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true,
// Required by C8 and IntelliJ's debugger
"sourceMap": true
// WORKAROUND: https://github.com/isaacs/node-lru-cache/issues/353
// "strictBuiltinIteratorReturn": false
},
"include": [
// Files used to generate the target directory
"./src",
"./test",
"./build"
],
"exclude": [
"node_modules",
"target",
"eslint.config.mjs",
"./test/TestGlobalConfiguration.mts"
],
"declaration": true
}