chore: initial setup

That sweet sweet bunch of JS dotfiles
This commit is contained in:
Gustavo "Guz" L. de Mello
2024-01-18 00:20:38 -03:00
parent f00b271799
commit e167378d27
17 changed files with 4387 additions and 0 deletions

23
jsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"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"
]
}