mirror of
https://github.com/warkanum/monorepo-dep-checker.git
synced 2025-05-18 18:57:29 +00:00
21 lines
464 B
JSON
21 lines
464 B
JSON
{
|
|
"include": ["*.d.ts", "./src"],
|
|
"exclude": ["public", "dist", "./dist", "node_modules", "vite.config.js"],
|
|
"compilerOptions": {
|
|
"types": ["node"],
|
|
"target": "ES6",
|
|
"lib": ["DOM", "ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"jsx": "react-jsx",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
}
|
|
}
|