d0d3a64bd6
* prevent downgrades during update check * detect bun and use npm instead * detect missing tsconfig during init and print helpful error * add changeset * add links to dev worker started message * allow users to add custom pkg manager args during init * update changeset * fix links in unsupported terminals * deprecate terminalLink * update changeset
35 lines
1.0 KiB
JSON
35 lines
1.0 KiB
JSON
// See: https://www.totaltypescript.com/tsconfig-cheat-sheet
|
|
{
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", "./e2e/**/*.ts", "./types.d.ts"],
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
/* Building for a monorepo */
|
|
"declaration": true,
|
|
"composite": false,
|
|
"sourceMap": true,
|
|
"declarationMap": true,
|
|
/* We're building with tsup */
|
|
"moduleResolution": "Bundler",
|
|
"module": "ESNext",
|
|
"noEmit": true,
|
|
"lib": ["es2022", "DOM"],
|
|
"types": ["node", "vitest/globals"],
|
|
"jsx": "react",
|
|
"paths": {
|
|
"@trigger.dev/core/v3": ["../core/src/v3"],
|
|
"@trigger.dev/core/v3/*": ["../core/src/v3/*"],
|
|
"@trigger.dev/core-apps": ["../core-apps/src"],
|
|
"@trigger.dev/core-apps/*": ["../core-apps/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "./e2e/fixtures"]
|
|
}
|