mirror of
https://github.com/bitwarden/browser
synced 2026-01-29 07:43:28 +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).
11 lines
276 B
JSON
11 lines
276 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"]
|
|
}
|