-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
50 lines (47 loc) · 1.23 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"alwaysStrict": true,
"allowJs": true,
"checkJs": true,
"noEmit": true,
"skipLibCheck": true,
"strict": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noUncheckedSideEffectImports": true,
"lib": [
"ES2016",
"ES2017.Date",
"ES2017.Object",
"ES2017.String",
"ES2018.AsyncGenerator",
"ES2018.Promise",
"ES2018.Regexp",
"ES2018.AsyncIterable",
"ES2019.Array",
"ES2019.Object",
"ES2019.String",
"ES2019.Symbol",
"ES2020.Date",
"ES2020.Number",
"ES2020.Promise",
"ES2020.String",
"ES2020.Symbol.WellKnown",
"ES2021.String"
],
"types": ["vitest/globals"],
"sourceMap": true,
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "Bundler",
"outDir": "scripts",
"baseUrl": "src/"
},
"include": ["src", "tools/defines.d.ts"],
"exclude": ["node_modules", "src/chestui", "src/test/**", "vitest/dist/**", "scripts/**"],
// Pollutes global
"references": [{ "path": "./tsconfig.test.json" }, { "path": "./tsconfig.spec.json" }]
}