mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2024-11-04 18:21:31 +01:00
27 lines
660 B
JSON
27 lines
660 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"target": "ESNext",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"strict": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"maxNodeModuleJsDepth": 0
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|