auron
Version:
Interact with your ATProto labeler from your terminal
13 lines • 382 B
JSON
{
"compilerOptions": {
"target": "ES2021", // Or a newer version like ES2022 if needed
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"esModuleInterop": true,
"strict": true,
"moduleResolution": "node",
"skipLibCheck": true // This can help to skip type checking for problematic node_modules packages
},
"include": ["src/**/*"]
}