-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 944 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
{
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es5",
"module": "commonjs",
"lib": ["es2017", "dom"],
"typeRoots": ["node_modules/@types"],
"allowJs": true,
"outDir": "dist",
"strict": true,
"noImplicitAny": true,
"baseUrl": ".",
"resolveJsonModule": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@anagrams/models": ["src/models/index.ts"],
"@anagrams/services": ["src/services/index.ts"],
"@anagrams/utils": ["src/utils/index.ts"],
"@anagrams/environment": ["src/environments/index.ts"],
"@anagrams/injector": ["src/injector/index.ts"],
"@anagrams/factories": ["src/factories/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}