33 lines
649 B
JSON
33 lines
649 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "out-tsc",
|
|
"declaration": true,
|
|
"types": ["node", "jest"],
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": false,
|
|
"strict": false
|
|
},
|
|
"exclude": [
|
|
"out-tsc",
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts",
|
|
"jest.config.ts",
|
|
"global-setup.ts",
|
|
"global-teardown.ts"
|
|
],
|
|
"include": ["**/*.ts", "**/*.js"],
|
|
"references": [
|
|
{
|
|
"path": "../../packages/angular/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../../packages/devkit/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../../packages/nx/tsconfig.lib.json"
|
|
}
|
|
]
|
|
}
|