-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
63 lines (63 loc) · 2.04 KB
/
Copy pathtsconfig.json
File metadata and controls
63 lines (63 loc) · 2.04 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./",
"composite": true,
"incremental": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": false,
"verbatimModuleSyntax": true,
"paths": {
"@mastors/core": ["./packages/core/dist/index.d.ts"],
"@mastors/compiler": ["./packages/compiler/dist/index.d.ts"],
"@mastors/api": ["./packages/api/dist/index.d.ts"],
"@mastors/accessibility": ["./packages/accessibility/dist/index.d.ts"],
"@mastors/tokens": ["./packages/tokens/dist/index.d.ts"],
"@mastors/types": ["./packages/types/dist/index.d.ts"],
"@mastors/utils": ["./packages/utils/dist/index.d.ts"],
"@mastors/schemas": ["./packages/schemas/dist/index.d.ts"],
"@mastors/adapters/*": ["./packages/adapters/*/dist/index.d.ts"],
"@mastors/plugins/*": ["./packages/plugins/*/dist/index.d.ts"]
}
},
"include": [
"packages/*/src/**/*.ts",
"packages/*/src/**/*.tsx"
],
"exclude": [
"node_modules",
"**/dist/**",
"**/node_modules/**",
"**/*.test.ts",
"**/*.spec.ts",
"playground"
],
"references": [
{ "path": "./packages/types" },
{ "path": "./packages/utils" },
{ "path": "./packages/tokens" },
{ "path": "./packages/schemas" },
{ "path": "./packages/accessibility" },
{ "path": "./packages/core" },
{ "path": "./packages/compiler" },
{ "path": "./packages/api" },
{ "path": "./packages/adapters/react" },
{ "path": "./packages/adapters/vue" },
{ "path": "./packages/adapters/svelte" },
{ "path": "./packages/plugins/vite" },
{ "path": "./packages/plugins/webpack" }
]
}