1
0
mirror of https://github.com/garraflavatra/trmclr.git synced 2025-01-18 19:07:58 +00:00
trmclr/tsconfig.json

14 lines
269 B
JSON
Raw Normal View History

2022-10-09 08:10:43 +00:00
{
2024-08-09 12:03:36 +00:00
"include": [
"index.js"
],
2022-10-09 08:10:43 +00:00
"compilerOptions": {
2024-08-09 12:03:36 +00:00
// Rread JS files, as normally they are ignored as source files
"allowJs": true,
// Generate d.ts files
2022-10-09 08:10:43 +00:00
"declaration": true,
2024-08-09 12:03:36 +00:00
// Only output d.ts files
"emitDeclarationOnly": true
}
2022-10-09 08:10:43 +00:00
}