53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"declarationDir": "dist",
|
|
"declarationMap": false,
|
|
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
|
|
"types": ["node"],
|
|
"composite": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts",
|
|
"**/*_spec.ts",
|
|
"**/*_test.ts",
|
|
"jest.config.ts",
|
|
"jest.config.cts",
|
|
"eslint.config.mjs"
|
|
],
|
|
"include": ["*.ts", "src/**/*.ts", "plugins/**/*.ts", "typings/**/*.d.ts"],
|
|
"references": [
|
|
{
|
|
"path": "../webpack/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../react/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../eslint/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../js/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../devkit/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../nx/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../rollup/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../detox/tsconfig.lib.json"
|
|
}
|
|
]
|
|
}
|