mirror of
https://github.com/blueprint-community/extension-pteromonaco.git
synced 2026-02-18 19:41:53 +00:00
26 lines
628 B
JSON
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"
|
|
]
|
|
} |