mirror of
https://github.com/The-Low-Code-Foundation/OpenNoodl.git
synced 2026-01-11 23:02:56 +01:00
22 lines
809 B
JSON
22 lines
809 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"module": "es2020",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@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"]
|
|
}
|