Skip to content

Commit

Permalink
fix: include playwright.config.ts in app/web tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 committed Oct 26, 2024
1 parent f5f59c7 commit 492a556
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions apps/web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,21 @@
"declaration": true,
"composite": true,
"declarationMap": true
}
},
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
// except $lib which is handled by https://kit.svelte.dev/docs/configuration#files
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
"include": [
".svelte-kit/ambient.d.ts",
".svelte-kit/non-ambient.d.ts",
".svelte-kit/types/**/$types.d.ts",
"vite.config.js",
"vite.config.ts",
"playwright.config.ts",
"src/**/*.js",
"src/**/*.ts",
"src/**/*.svelte",
"tests/**/*.js",
"tests/**/*.ts",
"tests/**/*.svelte"
]
}

0 comments on commit 492a556

Please sign in to comment.