meet/tsconfig.json
Kevin Szuchet 02f1a6df5b
feat: Track user time in meetings (#10)
* feat: Track time users are in meetings

* chore: Remove unnecessary overrides from eslint config and console.log

* refactor: Separate the event into two: connect & disconnect

* chore: Add Segment api keys

* feat: Track disconnection only once and pass only world name and content server url
2023-08-18 15:56:28 +02:00

27 lines
693 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src", ".eslintrc.js", "vite.config.ts", "jest.config.ts", "scripts"],
"references": [{ "path": "./tsconfig.node.json" }]
}