You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
404 B
25 lines
404 B
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
},
|
|
"include": [
|
|
"packages/*/src"
|
|
],
|
|
"exclude": [
|
|
"packages/**/src/**/*.test.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.vitest.json"
|
|
},
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
]
|
|
}
|