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

19 lines
430 B
JSON
Raw Normal View History

2023-07-11 14:50:49 -03:00
{
"compilerOptions": {
"checkJs": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"module": "ES2022",
"target": "ES2022",
2023-07-11 19:05:50 -03:00
"alwaysStrict": true,
"outDir": "./dir"
2023-07-11 14:50:49 -03:00
},
2023-09-02 20:25:32 -03:00
"include": ["./eslint.config.js", "./commitlint.config.cjs"],
2023-07-11 14:50:49 -03:00
"exclude": ["./node_modules/**", "./dist/**"]
}