Files
mineping/tsconfig.json
Timofey Gelazoniya 7248a0096c feat: add typescript declaration files
Types are automatically generated from the existsing
JSDoc comments in the js source code. Use `types:build`
script from `package.json` to produce d.ts files.
2025-06-22 01:50:29 +03:00

10 lines
189 B
JSON

{
"include": ["lib/**/*.js", "index.js"],
"compilerOptions": {
"allowJs": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "types",
"removeComments": false
}
}