microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/http-client-csharp/tsconfig.json
30lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "composite": true, |
| 4 | "alwaysStrict": true, |
| 5 | "forceConsistentCasingInFileNames": true, |
| 6 | "preserveConstEnums": true, |
| 7 | "module": "node16", |
| 8 | "moduleResolution": "node16", |
| 9 | "esModuleInterop": true, |
| 10 | "noImplicitAny": true, |
| 11 | "noImplicitReturns": true, |
| 12 | "noImplicitThis": true, |
| 13 | "sourceMap": true, |
| 14 | "declarationMap": true, |
| 15 | "strict": true, |
| 16 | "declaration": true, |
| 17 | "stripInternal": true, |
| 18 | "noEmitHelpers": false, |
| 19 | "target": "es2021", |
| 20 | "lib": ["es2021"], |
| 21 | "experimentalDecorators": true, |
| 22 | "newLine": "LF", |
| 23 | "outDir": "dist", |
| 24 | "rootDir": ".", |
| 25 | "tsBuildInfoFile": "temp/tsconfig.tsbuildinfo", |
| 26 | "types": ["node", "mocha"], |
| 27 | "skipLibCheck": true |
| 28 | }, |
| 29 | "include": ["src/**/*.ts", "test/**/*.ts"] |
| 30 | } |
| 31 | |