-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 1009 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,
"checkJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"esModuleInterop": true,
"lib": ["DOM", "ES5", "ES6", "ES7", "ES2021"],
"types": ["node", "obsidian-typings", "jest"],
"paths": {
"obsidian-typings/implementations": [
"node_modules/obsidian-typings/dist/implementations.d.ts",
"node_modules/obsidian-typings/dist/implementations.cjs"
],
"Utility": [
"./typings/Utility"
]
},
"outDir": "./dist"
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts"
],
"exclude": ["node_modules", "main.js", "dist"]
}