23 lines
502 B
JSON
23 lines
502 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "commonjs",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"lib": ["ES2022"],
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["bun"],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/public/*": ["./public/*"],
|
|
"@/srv/*": ["./server/*"]
|
|
}
|
|
},
|
|
"exclude": ["remotion.config.ts"]
|
|
}
|