-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
39 lines (39 loc) · 953 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
{
"compilerOptions": {
"module": "commonjs",
"outDir": "./dist",
"baseUrl": "./",
"allowJs": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitAny": false,
"target": "es2017",
"typeRoots": [
"node_modules/@types"
],
"types": [
"jest",
"node"
],
"lib": [
"es2019"
],
"paths": {
"@shared": ["src/shared/index"],
"@shared/*": ["src/shared/*"],
"@offsets": ["src/lib/offsets/index"],
"@offsets/*": ["src/lib/offsets/*"],
"@mappings": ["src/lib/convert/mappings/index"],
"@mappings/*": ["src/lib/convert/mappings/*"],
"@convert": ["src/lib/convert/index"],
"@convert/*": ["src/lib/convert/*"]
}
}
}