返回 html-video
tsconfig.json
根目录 / packages / adapter-remotion / tsconfig.json
1 {
2 "extends": "../../tsconfig.base.json",
3 "compilerOptions": {
4 "rootDir": "src",
5 "outDir": "dist",
6 "noEmit": false
7 },
8 "comment": "Only the adapter's own .ts is compiled. The bridge/*.tsx are NOT compiled here — they are static assets handed to Remotion's bundle() (webpack+esbuild), which understands JSX. They ship via package.json `files`.",
9 "include": ["src/**/*.ts"],
10 "exclude": ["src/bridge/**/*", "dist", "node_modules"]
11 }
12
12 lines JSON