generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
30 lines (30 loc) · 791 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
/// <reference lib="dom" />
/// <reference lib="dom.iterable" />
{
"compilerOptions": {
// add Bun type definitions
"types": ["bun-types"],
"lib": ["DOM", "ES5", "ES6", "ES7"],
"module": "ESNext",
"target": "ES6",
"moduleResolution": "node",
"noEmit": true,
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"importHelpers": true,
"isolatedModules": true,
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"composite": true,
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"inlineSourceMap": true,
"inlineSources": true
},
"include": ["src/**/*.ts", "tests/**/*.ts", "bumpVersion.ts"]
}