-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
21 lines (21 loc) · 989 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@workleap/typescript-configs/monorepo-workspace",
"compilerOptions": {
"allowJs": true,
"strict": false,
"noFallthroughCasesInSwitch": false,
"baseUrl": ".",
"paths": {
"@test-utils": ["../../tooling/test-utils/index.ts"],
"@components": ["packages/components/src/index.ts"],
"@components/*": ["packages/components/src/*"],
"@stories/components": [".storybook/components/index.ts"],
"@stories/mdx": [".storybook/mdx/index.ts"],
"prettier-local/parser-babel": ["node_modules/.pnpm/[email protected]/node_modules/prettier/esm/parser-babel.mjs"],
"prettier-local/parser-postcss": ["node_modules/.pnpm/[email protected]/node_modules/prettier/esm/parser-postcss.mjs"]
}
},
"exclude": ["**/dist/**", "node_modules", "packages", "apps"],
"include": ["**/*", ".storybook/**/*"],
}