mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
20 lines
533 B
JSON
20 lines
533 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"lib": ["DOM", "DOM.Iterable", "ES2020"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noEmit": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*", "vitest.config.ts", "remotion.config.ts"]
|
||
|
|
}
|