init repo

This commit is contained in:
2025-10-21 22:18:18 +01:00
parent 09affd5191
commit fb8ff229c9
8 changed files with 130 additions and 0 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Node",
"esModuleInterop": true,
"outDir": "./dist",
"strict": false,
"declaration": true,
"declarationDir": "./dist",
"paths": {
"rollup/parseAst": ["./node_modules/rollup/dist/parseAst"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}