mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-23 06:10:32 +00:00
20 lines
385 B
JSON
20 lines
385 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": ["../../src/*"]
|
|
}
|
|
},
|
|
"include": ["../../src/extension-api/**/*.ts"],
|
|
"exclude": [
|
|
"../../src/**/*.test.ts",
|
|
"../../src/**/*.spec.ts",
|
|
"../../src/**/*.vue"
|
|
]
|
|
}
|