57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"outDir": "dist",
|
|
"types": ["node"],
|
|
"lib": ["ES2022", "DOM"],
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": [
|
|
"jest.config.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.tsx",
|
|
"src/**/*.test.tsx",
|
|
"src/**/*.spec.js",
|
|
"src/**/*.test.js",
|
|
"src/**/*.spec.jsx",
|
|
"src/**/*.test.jsx",
|
|
"**/*.stories.ts",
|
|
"**/*.stories.js",
|
|
"**/*.stories.jsx",
|
|
"**/*.stories.tsx",
|
|
"node_modules"
|
|
],
|
|
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx"],
|
|
"files": [
|
|
"../../node_modules/@nx/react/typings/cssmodule.d.ts",
|
|
"../../node_modules/@nx/react/typings/image.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../nx-dev/ui-fence/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../shared/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../ui-icons/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../ui-common/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../ui-code-block/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../../packages/devkit/tsconfig.lib.json"
|
|
}
|
|
],
|
|
"nx": {
|
|
"sync": {
|
|
"ignoredReferences": ["../../packages/devkit/tsconfig.lib.json"]
|
|
}
|
|
}
|
|
}
|