openmeter / api /client /javascript /tsconfig.json
Leon4gr45's picture
Upload folder using huggingface_hub
048b1e8 verified
Raw
History Blame Contribute Delete
684 Bytes
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"jsx": "react-jsx",
"lib": ["esnext"],
"module": "NodeNext",
"moduleResolution": "nodenext",
"outDir": "./dist",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext"
},
"exclude": [
"**/*.spec.ts",
"**/*.test.ts",
"scripts/**/*.ts",
"dist/**/*.ts",
"*.config.ts"
],
"include": ["**/*.ts", "src/react/**/*.tsx"]
}