-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
36 lines (36 loc) · 1.02 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"$schema": "https://json.schemastore.org/tsconfig",
"compileOnSave": false,
"compilerOptions": {
"declaration": true,
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"importHelpers": true,
"strict": false,
"newLine": "lf",
"moduleResolution": "Node16",
"target": "ES2022",
"module": "Node16",
"allowJs": true,
"esModuleInterop": true,
"skipLibCheck": true,
"verbatimModuleSyntax": false,
"paths": {
"@castro/astro-app": ["./apps/astro-app/src"],
"@castro/isomorphic-devtools": ["./packages/isomorphic-devtools/src"],
"@castro/ui-components": ["./packages/ui-components/src/index.mts"],
"@castro/ui-components/*": ["./packages/ui-components/*"],
"@castro/router": ["./packages/router/src/index.mts"],
"@castro/router/*": ["./packages/router/*"],
"@castro/core": ["./packages/core/src"]
}
},
"exclude": [
"**/node_modules",
"**/.*/",
"dist",
"**/*.stories.tsx",
"**/*.stories.mdx",
".storybook/**"
]
}