mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-14 06:07:23 +08:00
27 lines
683 B
JSON
27 lines
683 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noEmitOnError": false,
|
|
"outDir": "./dist",
|
|
"resolveJsonModule": true,
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ES2020",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@test-utils": ["./test_utils"],
|
|
"@test-utils/*": ["./test_utils/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": ["src/**/*", "test_utils/**/*"]
|
|
}
|