Files
cypress/packages/extension/tsconfig.lib.json
T
Bill Glesias 50ceb5a924 chore: migrate @packages/extension to TypeScript and tests to Vitest (#32680)
* chore: convert extension to TypeScript and vitest

* chore: typecheck the whole package
2025-10-23 10:32:36 -04:00

13 lines
226 B
JSON

{
"extends": "./tsconfig.json",
"include": [
"lib/**/*.ts"
],
"compilerOptions": {
"declaration": true,
"rootDir": "./lib",
"outDir": "./lib-dist",
"target": "ES2022",
"module": "CommonJS"
}
}