9ff4c0dbd5
* Setup project-wide prettier * Remove old workspace file * Remove old debugging directives * New top-level .prettierignore * Updated Prettier config settings * Contrubuting guide: Fix for some bad code blocks * Added more ignores * Improved the format script command * printWidth set to 100 * Formatted entire repo (pnpm run format)
25 lines
763 B
JSON
25 lines
763 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Workflow example",
|
|
"extends": "./base.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2021",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": ["esnext", "dom"],
|
|
"outDir": "lib",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@trigger.dev/sdk": ["../../packages/trigger-sdk/src/index"],
|
|
"@trigger.dev/sdk/*": ["../../packages/trigger-sdk/src/*"],
|
|
"@trigger.dev/github": ["../../integrations/github/src/index"],
|
|
"@trigger.dev/github/*": ["../../integrations/github/src/*"]
|
|
}
|
|
}
|
|
}
|