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
lilbetter.js/jsconfig.json
Gustavo "Guz" L. de Mello 138dc210e1 chore: 🔧 populate package.json
2024-01-18 01:12:59 -03:00

26 lines
455 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
},
"include": [
"./src/**/*",
"./test/**/*.js",
"./eslint.config.js",
"./commitlint.config.cjs"
],
"exclude": [
"./node_modules/**",
".dist"
]
}