mirror of
https://github.com/AIPexStudio/AIPex.git
synced 2026-05-13 18:51:35 +00:00
24 lines
468 B
JSON
24 lines
468 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"types": ["node", "chrome"],
|
|
"emitDeclarationOnly": false,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"src/skill/components/**",
|
|
"src/**/__tests__/**",
|
|
"src/**/*.test.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../core/tsconfig.json"
|
|
},
|
|
{
|
|
"path": "../dom-snapshot/tsconfig.json"
|
|
}
|
|
]
|
|
}
|