Files
ViGent2/remotion/tsconfig.json
Kevin Wong b74bacb0b5 更新
2026-01-29 17:54:43 +08:00

20 lines
462 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020", "DOM"],
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": "."
},
"include": ["src/**/*", "render.ts"],
"exclude": ["node_modules", "dist"]
}