hyparquet/tsconfig.json

15 lines
266 B
JSON
Raw Normal View History

2023-12-29 17:37:37 +00:00
{
"compilerOptions": {
2024-01-04 18:06:50 +00:00
"allowJs": true,
"checkJs": true,
2023-12-29 17:37:37 +00:00
"lib": ["esnext", "dom"],
2024-01-03 18:33:37 +00:00
"module": "nodenext",
2023-12-29 17:37:37 +00:00
"outDir": "dist",
2024-01-04 18:06:50 +00:00
"skipLibCheck": true,
2023-12-29 17:37:37 +00:00
"sourceMap": true,
2024-01-04 18:06:50 +00:00
"strict": true,
2023-12-29 17:37:37 +00:00
"target": "esnext",
},
"include": ["src"]
}