openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
codegen/tsconfig.json
27lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "noEmit": true, |
| 4 | "composite": true, |
| 5 | "alwaysStrict": true, |
| 6 | "forceConsistentCasingInFileNames": 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": "ES2022", |
| 20 | "types": ["node"], |
| 21 | "lib": ["es2022", "DOM"], |
| 22 | "experimentalDecorators": true, |
| 23 | "newLine": "LF" |
| 24 | }, |
| 25 | "include": ["src/**/*.ts", "test/**/*.ts", "vitest.config.ts", "**/*.ts", "**/*.tsx", "**/.storybook/**/*.ts", "**/.storybook/**/*.tsx"], |
| 26 | "exclude": ["**/node_modules/", "**/dist/", "**/build/", "**/coverage/"] |
| 27 | } |