-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
32 lines (32 loc) · 953 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@forastro/flow": ["packages/flow/src/index.ts"],
"@forastro/markdoc-html-tags": ["packages/markdoc-html-tags"],
"@forastro/remark-html-directives-integration": [
"packages/remark-html-directives-integration"
],
"@forastro/utilities": ["packages/utilities/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}