microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Samples/Samples.Tab/Web/tsconfig.json
27lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ES2020", |
| 4 | "outDir": "bin", |
| 5 | "useDefineForClassFields": true, |
| 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], |
| 7 | "module": "ESNext", |
| 8 | "skipLibCheck": true, |
| 9 | |
| 10 | /* Bundler mode */ |
| 11 | "moduleResolution": "bundler", |
| 12 | "allowImportingTsExtensions": true, |
| 13 | "isolatedModules": true, |
| 14 | "moduleDetection": "force", |
| 15 | "noEmit": true, |
| 16 | "jsx": "react-jsx", |
| 17 | |
| 18 | /* Linting */ |
| 19 | "strict": true, |
| 20 | "noUnusedLocals": true, |
| 21 | "noUnusedParameters": true, |
| 22 | "noFallthroughCasesInSwitch": true, |
| 23 | "noUncheckedSideEffectImports": true, |
| 24 | "forceConsistentCasingInFileNames": false |
| 25 | }, |
| 26 | "include": ["./src/**/*.ts"] |
| 27 | } |
| 28 | |