-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 738 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 738 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
{
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowJs": true,
"alwaysStrict": true,
"customConditions": ["esast"],
"declaration": true,
"declarationMap": true,
"lib": ["es2024"],
"module": "esnext",
"moduleResolution": "bundler",
"newLine": "lf",
"noEmit": true,
"noErrorTruncation": true,
"noUncheckedSideEffectImports": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"resolveJsonModule": true,
"sourceMap": true,
"target": "esnext",
"verbatimModuleSyntax": true
},
"exclude": ["coverage", "dist", "node_modules"],
"extends": "@tsconfig/strictest/tsconfig",
"include": ["**/**.json", "**/**.mjs", "**/**.mts", "**/**.ts"]
}