-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.exported.json
44 lines (44 loc) · 1.2 KB
/
tsconfig.exported.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
{
"extends": "@tsconfig/strictest",
"compilerOptions": {
// https://github.com/facebook/hermes/blob/main/doc/Features.md
// https://github.com/facebook/hermes/blob/main/doc/RegExp.md
// Some specific DOM stuff are also included in types.d.ts
"lib": [
"ES2015",
"ES2016.Array.Include",
"DOM",
"ES2017.Object",
"ES2017.TypedArrays",
"ES2018.Regexp",
"ES2019.Object",
"ES2019.Array",
"ES2020.BigInt",
"ES2020.Intl",
"ES2021",
"ES2022.Error",
"ES2022.Array"
],
"target": "ES2015",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"noEmit": true,
"types": ["./types"],
"baseUrl": ".",
"rootDir": ".",
// TODO: Figure out a way to move this into types.d.ts
"paths": {
"@revenge-mod/utils/*": ["./libraries/utils/src/*"],
"@revenge-mod/revenge": ["./types.d.ts"]
},
"skipLibCheck": true,
"noPropertyAccessFromIndexSignature": false,
"exactOptionalPropertyTypes": false,
"noImplicitReturns": false
},
"exclude": ["dist", "node_modules", "scripts"]
}