32 lines
1,006 B
JSON
32 lines
1,006 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"strict": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"paths": {
|
||
|
|
"@openreel/core": ["./packages/core/src/index.ts"],
|
||
|
|
"@openreel/core/*": ["./packages/core/src/*"],
|
||
|
|
"@openreel/image-core": ["./packages/image-core/src/index.ts"],
|
||
|
|
"@openreel/image-core/*": ["./packages/image-core/src/*"],
|
||
|
|
"@openreel/ui": ["./packages/ui/src/index.ts"],
|
||
|
|
"@openreel/ui/*": ["./packages/ui/src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"exclude": ["node_modules", "dist", "build"]
|
||
|
|
}
|