fleet/ee/fleetd-chrome/tsconfig.json
Ian Littman 1ae32f3bb8
🤖 Remove dependencies on tslint and ts-node (#38413)
Zed + Opus 4.5; initial prompt: What would it take to remove the
dependencies on ts-node and tslint? It looks like ts-node is currently
used for tests.

The agent prompted if I wanted to continue and I confirmed.

## Testing

- [x] Added/updated automated tests
2026-01-16 14:40:25 -06:00

23 lines
507 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"lib": [
"es2020",
"dom"
],
"module": "es2020",
"moduleResolution": "node",
"outDir": "dist/js",
"rootDir": "src",
"sourceMap": true,
"target": "es2015"
},
"exclude": [
"node_modules",
"jest.config.js",
"jest.setup.ts",
"jsdomwithfetch.ts"
],
}