Live video on the AT Protocol
1{
2 "compilerOptions": {
3 "baseUrl": ".",
4 "rootDir": ".",
5 "importHelpers": true,
6 "allowJs": false,
7 "allowSyntheticDefaultImports": true,
8 "downlevelIteration": true,
9 "esModuleInterop": true,
10 "preserveSymlinks": true,
11 "incremental": true,
12 "jsx": "react-jsx",
13 "module": "esnext",
14 "moduleResolution": "node",
15 "noEmitOnError": false,
16 "noImplicitAny": false,
17 "noImplicitReturns": false,
18 "noUnusedLocals": false,
19 "noUnusedParameters": false,
20 "useUnknownInCatchVariables": false,
21 "preserveConstEnums": true,
22 // DONT DO THIS so jsdoc will remain
23 "removeComments": false,
24 "resolveJsonModule": true,
25 "skipLibCheck": true,
26 "sourceMap": false,
27 "strictNullChecks": true,
28 "target": "es2020",
29 "types": ["node"],
30 "lib": ["dom", "esnext"]
31 },
32 "exclude": ["_", "*.d.ts"],
33 "typeAcquisition": {
34 "enable": true
35 }
36}