77 lines
1.5 KiB
JSON
77 lines
1.5 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",
|
|
"mf/**/*.ts",
|
|
"plugins/**/*.ts",
|
|
"typings/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../rollup/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../module-federation/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../web/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../eslint/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../js/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../devkit/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../nx/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../storybook/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../webpack/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../vitest/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../rsbuild/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../playwright/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../cypress/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../vite/tsconfig.lib.json"
|
|
}
|
|
]
|
|
}
|