-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
28 lines (28 loc) · 735 Bytes
/
tsconfig.build.json
File metadata and controls
28 lines (28 loc) · 735 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
{
"compilerOptions": {
"allowImportingTsExtensions": false,
"allowJs": false,
"checkJs": false,
"customConditions": ["docmark"],
"declarationMap": false,
"noEmitOnError": true,
"sourceMap": false,
"target": "es2024"
},
"exclude": ["**/__mocks__/**", "**/__tests__/**"],
"extends": "./tsconfig.json",
"files": [
"typings/@flex-development/docast/index.d.mts",
"typings/@flex-development/fsm-tokenizer/index.d.mts",
"typings/micromark-util-types/index.d.mts"
],
"include": ["dist/**/*", "src/**/**.mts"],
"references": [
{
"path": "packages/docmark/tsconfig.build.json"
},
{
"path": "packages/docmark-factory-whitespace/tsconfig.build.json"
}
]
}