1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-18 18:33:50 +00:00
Files
browser/libs/flight-recorder/tsconfig.lib.json
addisonbeck 09fb7b92ca chore(nx): generate flight-recorder lib
Create new @bitwarden/flight-recorder library via NX generator:
- Library structure with src/index.ts entry point
- Jest, ESLint, and TypeScript configuration
- CODEOWNERS assigned to Platform team
- tsconfig.base.json path mapping added
2026-01-16 15:47:06 -05:00

11 lines
229 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"declaration": true,
"types": ["node"]
},
"include": ["src/**/*.ts"],
"exclude": ["jest.config.js", "src/**/*.spec.ts"]
}