-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
28 lines (28 loc) · 856 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
28 lines (28 loc) · 856 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
{
"extends": ["@tsconfig/strictest/tsconfig", "@tsconfig/node24/tsconfig"],
"include": ["${configDir}/src/**/*"],
"compilerOptions": {
"rootDir": "${configDir}/src",
"outDir": "${configDir}/dist/dts",
"emitDeclarationOnly": true,
"composite": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"importHelpers": true,
"resolveJsonModule": true,
// prefer linter rule
"noUnusedLocals": false,
"noUnusedParameters": false,
// incompatible with https://biomejs.dev/linter/rules/use-literal-keys/
"noPropertyAccessFromIndexSignature": false,
"moduleResolution": "nodenext",
"types": ["node"],
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
"paths": {
"@nahkies/*": ["./packages/*/src"]
}
}
}