Added feature to detect automatically monorepos and it's tsconfig.json and jsconfig.json files
19 lines
426 B
JSON
19 lines
426 B
JSON
{
|
|
"compilerOptions": {
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"module": "ES2022",
|
|
"target": "ES2022",
|
|
"alwaysStrict": true,
|
|
"outDir": "./dir"
|
|
},
|
|
"include": ["eslint.config.js", "commitlint.config.cjs"],
|
|
"exclude": ["./node_modules/**", "./dist/**"]
|
|
}
|