-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (33 loc) · 971 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
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "Node10",
"lib": ["ES2015", "ES2015.Promise", "ES2020", "DOM", "DOM.Iterable"],
"allowJs": true,
"esModuleInterop": false,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./scripts/",
"baseUrl": "./src",
"paths": {
"@/*": ["./libraries/*"],
"$/*": ["./database/*"],
"^/*": ["./utils/*"],
},
"jsx": "react",
"jsxFactory": "m",
"jsxFragmentFactory": "m.Fragment",
},
"include": ["./src/**/*"],
"tsc-alias": {
"verbose": false,
"resolveFullPaths": true,
"fileExtensions": {
"inputGlob": "{js,jsx}",
"outputCheck": ["js", "jsx"]
}
}
}