-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (44 loc) · 1001 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
40
41
42
43
44
{
"include": ["src/*", "src/**/*", "global.d.ts"],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"jsx": "react",
"typeRoots": ["node_modules/@types"],
"types": ["node", "jest"],
"outDir": "./",
"strict": true,
"strictPropertyInitialization": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"strictFunctionTypes": false,
"removeComments": true,
"allowJs": true,
"module": "es2022",
"target": "es6",
"useDefineForClassFields": true,
"moduleResolution": "node",
"noImplicitAny": true,
"lib": [
"DOM",
"DOM.Iterable",
"ES5",
"ES6",
"ES7",
"ES2018",
"ESNext",
"ES2015.promise",
"ES2015.Core",
"ES2015.Iterable",
"ES2016.Array.Include",
"ES2017.object",
"ES2018.RegExp",
"ESNext.Array"
],
"sourceMap": true,
"pretty": true
}
}