-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
42 lines (42 loc) · 1.15 KB
/
tsconfig.base.json
File metadata and controls
42 lines (42 loc) · 1.15 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
33
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": false,
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": false,
"emitDecoratorMetadata": false,
"esModuleInterop": true,
"experimentalDecorators": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"incremental": true,
"isolatedModules": true,
"lib": ["es2022"],
"module": "nodenext",
"moduleResolution": "NodeNext",
"noEmit": false,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"pretty": true,
"removeComments": false,
"resolveJsonModule": false,
"skipDefaultLibCheck": false,
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"target": "es2022",
"verbatimModuleSyntax": false,
"baseUrl": ".",
"paths": {
"@pgflow/client": ["./pkgs/client/src/index.ts"],
"@pgflow/core": ["./pkgs/core/src/index.ts"],
"@pgflow/dsl": ["./pkgs/dsl/src/index.ts"]
}
}
}