Files
extension-pteromonaco/components/tsconfig.json
2025-07-13 17:33:30 +01:00

26 lines
628 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"jsx": "react",
"baseUrl": ".",
"paths": {
"@/*": ["../.dist/types/*"],
"@definitions/*": ["../.dist/types/api/definitions/*"],
"@feature/*": ["../.dist/types/components/server/features/*"],
"@blueprint/*": ["../.dist/types/blueprint/*"]
},
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"noEmit": true,
"typeRoots": [
"../.dist/types"
]
},
"include": [
"./**/*"
],
"exclude": [
"node_modules"
]
}