-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
tsconfig.json
49 lines (49 loc) · 925 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
45
46
47
48
49
{
"exclude": [
"node_modules",
"build",
"dist",
"jest.setup.js",
"*.config.js",
"coverage"
],
"compilerOptions": {
"jsx": "react",
"outDir": "./build",
"baseUrl": "./src",
"noImplicitAny": true,
"module": "ESNEXT",
"target": "ESNEXT",
"removeComments": true,
"allowJs": true,
"declaration": false,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"lib": [
"DOM",
"ES2017.Intl",
"ES2018.Intl",
"ESNEXT.Intl",
"DOM.Iterable",
"ES6",
"webworker",
],
"forceConsistentCasingInFileNames": true,
"paths": {
"@backend/*": [
"./backend/*"
],
"@pages/*": [
"./pages/*"
],
"@libs/*": [
"./libs/*"
],
"@schema": [
"types/schema.d.ts"
],
}
}
}