24 lines
593 B
JSON
24 lines
593 B
JSON
{
|
|
"exclude": ["*.parquet", "node_modules/@clickhouse"],
|
|
"compilerOptions": {
|
|
"preserveConstEnums": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"target": "ESNext",
|
|
"outDir": ".build",
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"lib": ["ESNext", "ES2021.String"],
|
|
"rootDir": "./",
|
|
"skipLibCheck": true,
|
|
"downlevelIteration": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react",
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|