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 e167378d27 chore: initial setup
That sweet sweet bunch of JS dotfiles
2024-01-18 00:20:38 -03:00

24 lines
445 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/**/*.js",
"./eslint.config.js"
],
"exclude": [
"./node_modules/**",
".dist"
]
}