28 lines
524 B
JSON
28 lines
524 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "out-tsc/spec",
|
|
"customConditions": ["@nx/nx-source"],
|
|
"types": ["jest", "node"],
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"**/*.spec.ts",
|
|
"**/*_spec.ts",
|
|
"**/*.spec.tsx",
|
|
"**/*.spec.js",
|
|
"**/*.spec.jsx",
|
|
"**/*.fixture.js",
|
|
"**/*.fixture.ts",
|
|
"**/*.d.ts",
|
|
"./src/internal-testing-utils/**/*.ts",
|
|
"jest.config.ts",
|
|
"*.json"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.lib.json"
|
|
}
|
|
]
|
|
}
|