-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (35 loc) · 916 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
35
{
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowJs": true,
"alwaysStrict": true,
"customConditions": ["mlly", "development"],
"declaration": true,
"declarationMap": true,
"lib": ["es2023"],
"module": "esnext",
"moduleResolution": "bundler",
"newLine": "lf",
"noEmit": true,
"noErrorTruncation": true,
"noUncheckedSideEffectImports": true,
"noUnusedParameters": false,
"paths": {
"#node_modules/*": ["./__fixtures__/node_modules/*"]
},
"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"
]
}
}