hyparquet/tsconfig.json

15 lines
289 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",
2024-01-04 19:11:00 +00:00
"noEmit": true,
"resolveJsonModule": true,
2024-04-26 19:52:42 +00:00
"skipLibCheck": false,
2024-01-04 18:06:50 +00:00
"strict": true,
2023-12-29 17:37:37 +00:00
"target": "esnext",
},
"include": ["src", "test", "demo"]
2023-12-29 17:37:37 +00:00
}