mirror of
https://github.com/LukeHagar/usage-statistics.git
synced 2025-12-06 04:21:55 +00:00
23 lines
470 B
JSON
23 lines
470 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"outDir": "dist",
|
|
"declaration": false,
|
|
"sourceMap": false,
|
|
"module": "CommonJS",
|
|
"target": "ES2020",
|
|
"moduleResolution": "Node",
|
|
"allowImportingTsExtensions": false,
|
|
"lib": ["ES2020"],
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"src/action.ts",
|
|
"src/collectors/**/*.ts",
|
|
"src/summaries/**/*.ts",
|
|
"src/utils.ts",
|
|
"src/clients/**/*.ts"
|
|
]
|
|
}
|