28 lines
467 B
JSON
28 lines
467 B
JSON
{
|
|
"extends": "../tsconfig.backend.json",
|
|
"compilerOptions": {
|
|
"rootDir": "../",
|
|
"paths": {
|
|
"@/*": ["../src/*"]
|
|
},
|
|
"outDir": "../built-test",
|
|
"typeRoots": [
|
|
"../src/@types",
|
|
"../node_modules/@types",
|
|
"../node_modules"
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"../src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/built/",
|
|
"**/*.test.ts",
|
|
"./test/**/*",
|
|
"./test-federation/**/*",
|
|
"./test-server/**/*",
|
|
"../src/**/*.test.ts"
|
|
]
|
|
}
|