mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-05 23:18:53 -05:00
23 lines
593 B
JSON
23 lines
593 B
JSON
{
|
|
"include": ["client/src/**/*"],
|
|
"exclude": ["node_modules", "build", "dist", "**/*.test.ts"],
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./node_modules/typescript/tsbuildinfo",
|
|
"noEmit": true,
|
|
"module": "ESNext",
|
|
"strict": true,
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"jsx": "preserve",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"types": ["node", "vite/client"],
|
|
"paths": {
|
|
"@/*": ["./client/src/*"],
|
|
}
|
|
}
|
|
}
|