返回 html-video
tsconfig.json
根目录 / packages / studio-next / tsconfig.json
1 {
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "moduleResolution": "Bundler",
6 "lib": ["ES2022", "DOM", "DOM.Iterable"],
7 "jsx": "react-jsx",
8 "strict": true,
9 "noUncheckedIndexedAccess": true,
10 "esModuleInterop": true,
11 "skipLibCheck": true,
12 "isolatedModules": true,
13 "allowSyntheticDefaultImports": true,
14 "resolveJsonModule": true
15 },
16 "include": ["src/**/*"]
17 }
18
18 lines JSON