microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-6465

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/emitter-framework/tsconfig.json

21lines · modecode

1{
2 "compilerOptions": {
3 "lib": ["es2023", "DOM"],
4 "module": "NodeNext",
5 "moduleResolution": "NodeNext",
6 "target": "es2022",
7 "strict": true,
8 "skipLibCheck": true,
9 "isolatedModules": true,
10 "declaration": true,
11 "sourceMap": true,
12 "declarationMap": true,
13 "jsx": "preserve",
14 "jsxImportSource": "@alloy-js/core",
15 "emitDeclarationOnly": true,
16 "outDir": "dist",
17 "rootDir": "./"
18 },
19 "include": ["src/**/*.ts", "src/**/*.tsx", "test/**/*.ts", "test/**/*.tsx"],
20 "exclude": ["node_modules", "dist"]
21}