mirror of
https://github.com/bitwarden/browser
synced 2026-01-30 00:03:30 +00:00
Add play.spec.ts as playwright test plaths. Also establishes .type.spec.ts as a specially ignored path everywhere. Finally, we no longer need the ast transformer since we don't use import.meta statements anymore. (this was also two years ago, it's possible this just works now).
17 lines
329 B
JSON
17 lines
329 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../..//dist/out-tsc",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node10",
|
|
"types": ["jest", "node"]
|
|
},
|
|
"include": [
|
|
"jest.config",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.d.ts",
|
|
"src/intercept-console.ts"
|
|
]
|
|
}
|