mirror of
https://github.com/The-Low-Code-Foundation/OpenNoodl.git
synced 2026-03-07 17:43:28 +01:00
23 lines
860 B
JSON
23 lines
860 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"module": "es2020",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@noodl/git": ["../noodl-git/src/index.ts"],
|
|
"@noodl-core-ui/*": ["../noodl-core-ui/src/*"],
|
|
"@noodl-hooks/*": ["./src/editor/src/hooks/*"],
|
|
"@noodl-utils/*": ["./src/editor/src/utils/*"],
|
|
"@noodl-models/*": ["./src/editor/src/models/*"],
|
|
"@noodl-constants/*": ["./src/editor/src/constants/*"],
|
|
"@noodl-contexts/*": ["./src/editor/src/contexts/*"],
|
|
"@noodl-types/*": ["./src/editor/src/types/*"],
|
|
"@noodl-store/*": ["./src/editor/src/store/*"]
|
|
}
|
|
},
|
|
"include": ["src/editor", "src/shared", "src/main", "@include-types"],
|
|
"exclude": ["dist", "src/external", "build", "build-tmp", "webpackconfigs", "**/*.stories.tsx"]
|
|
}
|