31 lines
781 B
JSON
31 lines
781 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@xagi/design-mode-shared": ["./packages/client-shared/src"],
|
|
"@xagi/design-mode-shared/*": ["./packages/client-shared/src/*"],
|
|
"@xagi/design-mode-client-react": ["./packages/client-react/src"],
|
|
"@xagi/design-mode-client-vue": ["./packages/client-vue/src"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/dist",
|
|
"**/node_modules"
|
|
]
|
|
} |