mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
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
23 lines
507 B
JSON
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"
|
|
],
|
|
}
|