paths-filter/tsconfig.json
Jim Kane 05fe388b9a Bump @actions/core from 1.10.1 to 3.0.0 and @actions/exec from 1.1.1 to 3.0.0
Both packages moved to ESM-only in v3, so this migrates the project
from CommonJS to ESM: adds "type": "module" to package.json, switches
tsconfig to module/moduleResolution "nodenext", adds .js extensions to
all relative imports, and reconfigures Jest for ESM support.
2026-03-25 13:07:48 -05:00

16 lines
341 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "nodenext",
"moduleResolution": "nodenext",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"isolatedModules": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "**/*.test.ts"]
}