-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
82 lines (82 loc) · 2.77 KB
/
tsconfig.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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"compilerOptions": {
// ? Needed to type check our various .js files
"allowJs": true,
"allowSyntheticDefaultImports": true,
// ? Due to paths, the effect of this prop is limited (already covered)
"allowImportingTsExtensions": true,
// ? Due to paths, the effect of this prop is limited (often ignored)
"allowArbitraryExtensions": true,
"alwaysStrict": true,
"baseUrl": ".",
// ? Does too much; opt-in (provided by allowJs) is better
"checkJs": false,
"jsx": "preserve",
"declaration": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"inlineSourceMap": true,
"isolatedModules": true,
// ? Tried it. Not a fan. Also conflicts with allowJs
"isolatedDeclarations": false,
"lib": [
"ESNext",
"DOM",
"WebWorker.ImportScripts",
"ScriptHost",
"DOM.Iterable"
],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmit": true,
"noErrorTruncation": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
// ? Disabled in favor of @typescript-eslint/no-unused-vars
"noUnusedLocals": false,
// ? Disabled in favor of @typescript-eslint/no-unused-vars
"noUnusedParameters": false,
// ! These aliases are auto-generated by symbiote. Instead of modifying them
// ! directly, consider regenerating aliases across the entire project with:
// ! `npx symbiote project renovate --regenerate-assets --assets-preset ...`
"paths": {
"multiverse+checks:*": ["packages/checks/src/*"],
"multiverse+extensions:*": ["packages/extensions/src/*"],
"multiverse+checks": ["packages/checks/src/index.ts"],
"multiverse+extensions": ["packages/extensions/src/index.ts"],
"rootverse+checks:*": ["packages/checks/*"],
"rootverse+extensions:*": ["packages/extensions/*"],
"rootverse:*": ["*"],
"universe+checks:*": ["packages/checks/src/*"],
"universe+extensions:*": ["packages/extensions/src/*"],
"universe+checks": ["packages/checks/src/index.ts"],
"universe+extensions": ["packages/extensions/src/index.ts"],
"universe:*": ["src/*"],
"universe": ["src/index.ts"],
"testverse+checks:*": ["packages/checks/test/*"],
"testverse+extensions:*": ["packages/extensions/test/*"],
"testverse:*": ["test/*"],
"typeverse:*": ["types/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext"
},
"include": [
"types/**/*",
"src/**/*",
"test/**/*",
"packages/*/src/**/*",
"packages/*/test/**/*"
],
"exclude": [
"**/dist/**/*",
"**/node_modules/**/*",
"**/*.ignore",
"**/*.ignore.*/**/*",
"**/ignore.*"
]
}