-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathtsconfig.base.json
40 lines (40 loc) · 1.68 KB
/
tsconfig.base.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
40
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@nx-extend/changelog-notify": ["packages/changelog-notify/src/index.ts"],
"@nx-extend/core": ["packages/core/src/index.ts"],
"@nx-extend/docusaurus": ["packages/docusaurus/src/index.ts"],
"@nx-extend/e2e-runner": ["packages/e2e-runner/src/index.ts"],
"@nx-extend/firebase-hosting": ["packages/firebase-hosting/src/index.ts"],
"@nx-extend/gcp-cloud-run": ["packages/gcp-cloud-run/src/index.ts"],
"@nx-extend/gcp-deployment-manager": [
"packages/gcp-deployment-manager/src/index.ts"
],
"@nx-extend/gcp-functions": ["packages/gcp-functions/src/index.ts"],
"@nx-extend/gcp-secrets": ["packages/gcp-secrets/src/index.ts"],
"@nx-extend/gcp-storage": ["packages/gcp-storage/src/index.ts"],
"@nx-extend/gcp-task-runner": ["packages/gcp-task-runner/src/index.ts"],
"@nx-extend/github-pages": ["packages/github-pages/src/index.ts"],
"@nx-extend/playwright": ["packages/playwright/src/index.ts"],
"@nx-extend/react-email": ["packages/react-email/src/index.ts"],
"@nx-extend/strapi": ["packages/strapi/src/index.ts"],
"@nx-extend/translations": ["packages/translations/src/index.ts"],
"@nx-extend/vercel": ["packages/vercel/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}