generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtsconfig.json
38 lines (38 loc) · 950 Bytes
/
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
{
"compilerOptions": {
"baseUrl": "./",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": false,
"esModuleInterop": true,
"downlevelIteration": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7",
"ES2017.Object",
"ES2019.Object",
"ES2018.Regexp",
"ES2021.String",
"ES2021.Promise",
"ESNext"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": ["reflect-metadata", "node", "jest"],
"paths": {
"@config/*": ["config/*"],
"@src/*": ["src/*"],
"front-matter-plugin-api-provider": ["modules/api-provider/src"]
}
},
"include": ["./**/*.ts", "./src", "./config", "./modules/**/*.ts"],
"typescript.tsdk": "node_modules/typescript/lib"
}