-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
45 lines (45 loc) · 1.27 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
41
42
43
44
45
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"esModuleInterop": true,
"declaration": true,
"strict": true,
"isolatedModules": true,
"noErrorTruncation": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"importHelpers": true,
"target": "es2016",
"module": "CommonJS",
"lib": ["es2020"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"types": ["node"],
"paths": {
"@proxy-manager/*": ["./packages/*/src/index.ts"]
},
"removeComments": true,
"alwaysStrict": true,
"allowJs": true
},
"transpileOnly": true,
"exclude": ["node_modules", "scripts", "tmp", "./**/*.spec.ts", "./**/*.spec.tsx"],
"include": ["./**/*.d.ts", "./scripts/*.d.ts"],
"ts-node": {
"esm": true,
"transpileOnly": true,
"logError": true,
"require": ["source-map-support", "tsconfig-paths"]
},
"typedocOptions": {
"name": "Proxy Manager - Type Definitions",
"exclude": ["**/node_modules/*", "**e2e**", "./**/*.spec.ts", "./**/*.spec.tsx", "**/apps/*", "**/scripts/*"],
"out": "./dist/docs"
}
}