-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·32 lines (32 loc) · 1.26 KB
/
tsconfig.json
File metadata and controls
executable file
·32 lines (32 loc) · 1.26 KB
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
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"resolveJsonModule": true,
"declaration": true,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"declarationMap": true,
"outDir": "./build",
"lib": ["es2020"],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": ".",
"strictNullChecks": true,
"paths": {
"@pop-code/oauth2-common": ["packages/common/src"],
"@pop-code/oauth2": ["packages/core/src"],
"@pop-code/oauth2-authorization-code": ["packages/authorization-code/core/src"],
"@pop-code/oauth2-authorization-code-express": ["packages/authorization-code/express/src"],
"@pop-code/oauth2-client-credentials": ["packages/client-credentials/core/src"],
"@pop-code/oauth2-client-credentials-express": ["packages/client-credentials/express/src"],
"@pop-code/oauth2-client-credentials-fastify": ["packages/client-credentials/fastify/src"]
}
},
"exclude": ["node_modules"]
}