-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 892 Bytes
/
tsconfig.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
{
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowJs": true,
"alwaysStrict": true,
"customConditions": ["mkbuild", "development", "node"],
"declaration": true,
"declarationMap": true,
"lib": ["es2024"],
"module": "esnext",
"moduleResolution": "bundler",
"newLine": "lf",
"noEmit": true,
"noErrorTruncation": true,
"noUncheckedSideEffectImports": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {},
"resolveJsonModule": true,
"sourceMap": true,
"target": "esnext",
"verbatimModuleSyntax": true
},
"exclude": ["coverage", "dist", "node_modules"],
"extends": "@tsconfig/strictest/tsconfig",
"include": ["**/**.json", "**/**.mjs", "**/**.mts", "**/**.ts"],
"mdx": {
"plugins": [
"remark-directive",
"remark-frontmatter",
"remark-gfm"
]
}
}