1
0
mirror of https://github.com/garraflavatra/trmclr.git synced 2024-11-22 07:47:34 +01:00
trmclr/tsconfig.json

14 lines
269 B
JSON
Raw Normal View History

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