UNPKG

sandai-react

Version:

React components and utilities for the Sandai 3D AI Characters.

30 lines (29 loc) 820 B
{ "compilerOptions": { "lib": ["ESNext", "DOM"], "module": "esnext", "target": "esnext", "moduleResolution": "node", "moduleDetection": "force", "allowImportingTsExtensions": true, "emitDeclarationOnly": true, // Emit only declaration files "declaration": true, // Generate .d.ts files "declarationMap": true, // Generate source maps for declarations "outDir": "dist", "strict": true, "downlevelIteration": true, "skipLibCheck": true, "jsx": "react-jsx", "paths": { "react": [ "./node_modules/@types/react" ] }, "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "allowJs": true, "types": [ "bun-types" // add Bun global ] }, "include": ["src"], "exclude": ["dist", "node_modules"] }