2025-12-28 16:08:06 -08:00
|
|
|
{
|
2025-12-28 21:16:46 -08:00
|
|
|
"extends": "../../../tsconfig.base.json",
|
2025-12-28 16:08:06 -08:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"typeRoots": [
|
|
|
|
|
"../../../../../node_modules/@types",
|
|
|
|
|
"./node_modules/@types",
|
|
|
|
|
"./src/types"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts", "e2e/**/*"]
|
|
|
|
|
}
|