30 lines
655 B
JSON
30 lines
655 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "dist",
|
|
"types": ["node"],
|
|
"composite": true,
|
|
"declaration": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../ui-markdoc/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../models-package/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../models-document/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../../packages/devkit/tsconfig.lib.json"
|
|
}
|
|
],
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"]
|
|
}
|