Skip to content

Commit

Permalink
Fix formatting, add globalenv for turbo v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Lermatroid committed Jul 20, 2024
1 parent e016814 commit 88b6329
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 25 deletions.
50 changes: 25 additions & 25 deletions apps/web/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
39 changes: 39 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,44 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"AWS_ACCESS_KEY_ID",
"AWS_REGION",
"AWS_S3_BUCKET",
"AWS_S3_ENDPOINT",
"AWS_S3_REGION",
"AWS_SECRET_ACCESS_KEY",
"AWS_SES_ACCESS_KEY",
"AWS_SES_EMAIL_FROM",
"AWS_SES_SECRET_ACCESS_KEY",
"BACKUP_CRON_SCHEDULE",
"BACKUP_DATABASE_URL",
"BLOB_READ_WRITE_TOKEN",
"BOT_API_URL",
"CLERK_SECRET_KEY",
"DISCORD_CLIENT_ID",
"DISCORD_DEV_SERVER_ID",
"DISCORD_DEV_VERIFY_CHANNEL_ID",
"DISCORD_PROD_SERVER_ID",
"DISCORD_PROD_VERIFY_CHANNEL_ID",
"DISCORD_SECRET_TOKEN",
"INTERNAL_AUTH_KEY",
"KV_REST_API_READ_ONLY_TOKEN",
"KV_REST_API_TOKEN",
"KV_REST_API_URL",
"KV_URL",
"NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY",
"NEXT_PUBLIC_CLERK_SIGN_IN_URL",
"NEXT_PUBLIC_CLERK_SIGN_UP_URL",
"POSTGRES_DATABASE",
"POSTGRES_HOST",
"POSTGRES_PASSWORD",
"POSTGRES_PRISMA_URL",
"POSTGRES_URL",
"POSTGRES_URL_NON_POOLING",
"POSTGRES_URL_NO_SSL",
"POSTGRES_USER"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
Expand All @@ -10,6 +48,7 @@
"dev": {
"cache": false,
"persistent": true

}
}
}

0 comments on commit 88b6329

Please sign in to comment.