openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
mailinhphan/clientOptions

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

codegen/tsconfig.json

28lines · modecode

1{
2 "compilerOptions": {
3 "noEmit": true,
4 "composite": true,
5 "skipLibCheck": true,
6 "alwaysStrict": true,
7 "forceConsistentCasingInFileNames": true,
8 "module": "Node16",
9 "moduleResolution": "Node16",
10 "esModuleInterop": true,
11 "noImplicitAny": true,
12 "noImplicitReturns": true,
13 "noImplicitThis": true,
14 "sourceMap": true,
15 "declarationMap": true,
16 "strict": true,
17 "declaration": true,
18 "stripInternal": true,
19 "noEmitHelpers": false,
20 "target": "ES2022",
21 "types": ["node"],
22 "lib": ["es2022", "DOM"],
23 "experimentalDecorators": true,
24 "newLine": "LF"
25 },
26 "include": ["src/**/*.ts", "test/**/*.ts", "vitest.config.ts", "**/*.ts", "**/*.tsx", "**/.storybook/**/*.ts", "**/.storybook/**/*.tsx"],
27 "exclude": ["**/node_modules/", "**/dist/", "**/build/", "**/coverage/"]
28}