This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ESLegant/tsconfig.json
2023-09-02 20:25:32 -03:00

19 lines
430 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/**"]
}