1234567891011121314151617181920212223242526272829303132 |
- {
- "extends": "../tsconfig.json",
- "compilerOptions": {
- "outDir": "../out-tsc/app",
- "baseUrl": "./",
- "module": "es2015",
- "types": [
- "node"
- ],
- "paths": {
- "@shared": [
- "app/shared/index"
- ],
- "@shared/*": [
- "app/shared/*"
- ],
- "@core": [
- "app/core/index"
- ],
- "@core/*": [
- "app/core/*"
- ],
- "@env/*": [
- "environments/*"
- ]
- }
- },
- "exclude": [
- "test.ts",
- "**/*.spec.ts"
- ]
- }
|