Files
2026-07-13 12:38:36 +08:00

35 lines
770 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"declarationDir": "dist",
"declarationMap": false,
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
"types": ["node"],
"composite": true,
"customConditions": ["@nx/nx-source"],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"exclude": [
"node_modules",
"dist",
"**/*.spec.ts",
"**/*_spec.ts",
"**/test-utils.ts",
"jest.config.ts",
"**/__fixtures__/**/*.*",
"./src/internal-testing-utils/**/*.ts",
".eslintrc.json"
],
"include": [
"bin/**/*.ts",
"plugins/**/*.ts",
"release/**/*.ts",
"src/**/*.ts",
"src/**/*.json",
"tasks-runners/**/*.ts"
]
}