-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
32 lines (32 loc) · 874 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
32 lines (32 loc) · 874 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
27
28
29
30
31
32
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"isolatedModules": true,
"lib": ["es2018", "dom"],
"module": "ESNext",
"moduleResolution": "node",
"declaration": true,
// "noEmit": true,
"composite": false,
// "incremental": true,
"noEmitHelpers": true,
"pretty": true,
"resolveJsonModule": true,
"rootDir": ".",
"skipLibCheck": true,
"sourceMap": true,
// `"strict": true,
"target": "es2018",
// "typeRoots": ["node_modules", "node_modules/@types"],
"paths": {
"@pscale/trmx": ["./libs/trmx/src/index.ts"],
"@pscale/difx": ["./libs/difx/src/index.ts"],
"@pscale/util": ["./libs/util/src/index.ts"],
}
},
"exclude": ["node_modules"]
}