cache-apt-pkgs-action/tsconfig.json
2026-07-25 16:08:50 -07:00

21 lines
346 B
JSON

{
"extends": "./tsconfig.base.json",
"include": [
"src/**/*.ts",
"test/**/*.ts",
"scripts/**/*.mts",
"scripts/dist/**/*.ts"
],
"exclude": [
"node_modules",
"dist"
],
"compilerOptions": {
"types": [
"node",
"vitest/globals"
],
"allowImportingTsExtensions": true,
"noEmit": true
}
}