-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (44 loc) · 1.58 KB
/
Copy pathtsconfig.json
File metadata and controls
44 lines (44 loc) · 1.58 KB
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
37
38
39
40
41
42
43
44
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"exactOptionalPropertyTypes": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"paths": {
"@atomos/prime": ["./packages/atomos-prime/src/index.ts"],
"@atomos/prime-style": ["./packages/atomos-prime-style/src/index.ts"],
"@atomos/structura": ["./packages/atomos-structura/src/index.ts"],
"@atomos/structura-core": ["packages/atomos-structura-core/src/index.ts"],
"@atomos/structura-mcp": ["./packages/atomos-structura-mcp/src/index.ts"],
"@binaryjack/formular.dev": ["./packages/formular-dev/src/index.ts", "./packages/formular-dev/dist/types/index.d.ts"]
},
},
"include": ["./packages/*/src/**/*"],
"exclude": ["./node_modules", "./dist", "./build"],
"references": [
{ "path": "./packages/atomos-structura-core" },
{ "path": "./packages/atomos-prime-style" },
{ "path": "./packages/atomos-prime" },
{ "path": "./packages/atomos-structura-mcp" },
{ "path": "./packages/atomos-structura" }
]
}