generated from polyipseity/obsidian-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
119 lines (119 loc) · 3.09 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"compilerOptions": {
"allowArbitraryExtensions": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUmdGlobalAccess": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"assumeChangesOnlyAffectDirectDependencies": false,
"checkJs": true,
"composite": false,
"declaration": true,
"declarationMap": true,
"disableReferencedProjectLoad": true,
"disableSizeLimit": false,
"disableSolutionSearching": false,
"disableSourceOfProjectReferenceRedirect": false,
"downlevelIteration": true,
"emitBOM": false,
"emitDeclarationOnly": false,
"emitDecoratorMetadata": false,
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"incremental": true,
"inlineSourceMap": true,
"inlineSources": true,
"jsx": "react",
"lib": [
"DOM",
"ES2018"
],
"maxNodeModuleJsDepth": 0,
"module": "NodeNext",
"moduleDetection": "force",
"moduleResolution": "nodenext",
"moduleSuffixes": [
""
],
"noEmit": false,
"noEmitHelpers": false,
"noEmitOnError": false,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": false,
"noLib": false,
"noPropertyAccessFromIndexSignature": true,
"noResolve": false,
"noStrictGenericChecks": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"obsidian": [
"./node_modules/@polyipseity/obsidian/obsidian.d.ts"
]
},
"plugins": [
{
"enableForWorkspaceTypeScriptVersions": false,
"name": "typescript-eslint-language-service"
},
{
"enableForWorkspaceTypeScriptVersions": false,
"name": "typescript-styled-plugin"
}
],
"preserveConstEnums": true,
"pretty": true,
"removeComments": true,
"resolveJsonModule": true,
"rootDirs": [
"."
],
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"target": "ES2018",
"tsBuildInfoFile": ".tsbuildinfo",
"useDefineForClassFields": true,
"verbatimModuleSyntax": true
},
"exclude": [],
"extends": [
"@tsconfig/recommended/tsconfig.json",
"@tsconfig/strictest/tsconfig.json",
"@tsconfig/node16/tsconfig.json"
],
"include": [
"CHANGELOG.md",
"README.md",
"assets/**/*",
"sources/**/*"
],
"references": [],
"typeAcquisition": {
"disableFilenameBasedTypeAcquisition": false,
"enable": true,
"exclude": [],
"include": []
},
"watchOptions": {
"excludeDirectories": [],
"excludeFiles": [],
"fallbackPolling": "dynamicpriority",
"synchronousWatchDirectory": true,
"watchDirectory": "useFsEvents",
"watchFile": "useFsEvents"
}
}