-
-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
23 lines (23 loc) · 687 Bytes
/
tsconfig.base.json
File metadata and controls
23 lines (23 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Spell Checker Base Config",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"strict": true,
"strictFunctionTypes": true,
"alwaysStrict": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"newLine": "LF",
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"sourceMap": true,
"strictNullChecks": true,
"types": ["node"],
"outDir": "${configDir}/dist"
}
}