Files
nrwl--nx/packages/maven/tsconfig.lib.json
T
2026-07-13 12:38:36 +08:00

31 lines
655 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"tsBuildInfoFile": "dist/tsconfig.lib.tsbuildinfo",
"emitDeclarationOnly": false,
"types": ["node"],
"composite": true,
"noImplicitAny": false,
"noUnusedLocals": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*.ts"],
"exclude": [
"jest.config.ts",
"src/test-setup.ts",
"src/**/*.spec.ts",
"src/**/*.test.ts"
],
"references": [
{
"path": "../devkit/tsconfig.lib.json"
},
{
"path": "../nx/tsconfig.lib.json"
}
]
}