microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ce9c567e5bfb441bb6415699a6b6fa797bc08f2e

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/html-program-viewer/tsconfig.json

19lines · modecode

1{
2 "extends": "../../tsconfig.base.json",
3 "references": [
4 { "path": "../compiler/tsconfig.json" },
5 { "path": "../rest/tsconfig.json" },
6 { "path": "../openapi/tsconfig.json" }
7 ],
8 "compilerOptions": {
9 "outDir": "dist",
10 "rootDir": ".",
11 "tsBuildInfoFile": "temp/tsconfig.tsbuildinfo",
12 "skipLibCheck": true,
13 "jsx": "react-jsx",
14 "jsxImportSource": "@emotion/react",
15 "lib": ["DOM", "ES2022"],
16 "types": ["@emotion/react"]
17 },
18 "include": ["src/**/*.ts", "src/**/*.tsx", "test/**/*.ts"]
19}
20