-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
26 lines (26 loc) · 949 Bytes
/
tsconfig.base.json
File metadata and controls
26 lines (26 loc) · 949 Bytes
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "lib - Node 16 + Strictest",
"extends": "@tsconfig/node16-strictest/tsconfig.json",
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"skipLibCheck": true,
"strictNullChecks": true,
"skipDefaultLibCheck": true,
"module": "esnext",
"baseUrl": ".",
"paths": {
"@broadshield/github-actions-core-typed-inputs": ["packages/github-actions-core-typed-inputs/src/index.ts"],
"@broadshield/github-actions-octokit-hydrated": ["packages/github-actions-octokit-hydrated/src/index.ts"],
"@broadshield/github-actions-workflow-marie-kondo": ["packages/github-actions-workflow-marie-kondo/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}