-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 757 Bytes
/
tsconfig.json
File metadata and controls
23 lines (23 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"target": "es2017",
"baseUrl": "." /* Specify the base directory to resolve non-relative module names. */,
"module": "commonjs",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"paths": {
/* Specify a set of entries that re-map imports to additional lookup locations. */
"@configs/*": ["src/configs/*"],
"@data/*": ["src/data/*"],
"@fixtures/*": ["src/fixtures/*"],
"@utils/*": ["src/utils/*"],
"@environments/*": ["src/environments/*"],
"@pages": ["src/pages/index.ts"],
"@routes": ["src/routes/index.ts"],
"@routes/*": ["src/routes/*"],
"@scripts/*": ["src/scripts/*"]
}
}
}