chore: initialize a new project

This commit is contained in:
PalmDevs
2023-11-24 22:54:41 +07:00
parent fbf0dee0a8
commit e4dbbfd68c
96 changed files with 418 additions and 8981 deletions

17
tsconfig.base.json Executable file
View File

@@ -0,0 +1,17 @@
{
// `bun-types` will not be added until https://github.com/oven-sh/bun/issues/7247 is fixed
"extends": ["@tsconfig/strictest", /* "bun-types" */],
"compilerOptions": {
"lib": ["ESNext"],
"module": "NodeNext",
"moduleResolution": "Bundler",
"target": "ESNext",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"declaration": false,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
},
}