init repo

This commit is contained in:
2026-04-25 23:10:25 +08:00
commit 1e76eb536c
14 changed files with 3640 additions and 0 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "."
},
"include": ["src/**/*.ts", "src/**/*.tsx", "remotion.config.ts"]
}