2023-04-25 11:01:25 +00:00
|
|
|
{
|
|
|
|
"extends": "../../config/tsconfig.base.json",
|
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["node_modules", "dist", "**/*.css", ".tsbuild*"],
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./.tsbuild",
|
|
|
|
"rootDir": "src",
|
|
|
|
// TODO: enable these two options
|
|
|
|
"noImplicitOverride": false,
|
|
|
|
"noImplicitReturns": false,
|
2023-05-30 15:43:28 +00:00
|
|
|
"types": ["node", "@types/jest"]
|
2023-04-25 11:01:25 +00:00
|
|
|
},
|
|
|
|
"references": [
|
2024-02-21 13:07:53 +00:00
|
|
|
{
|
|
|
|
"path": "../state"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../store"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../tlschema"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../utils"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../validate"
|
|
|
|
}
|
2023-04-25 11:01:25 +00:00
|
|
|
]
|
|
|
|
}
|