generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.types.json
More file actions
27 lines (27 loc) · 672 Bytes
/
tsconfig.types.json
File metadata and controls
27 lines (27 loc) · 672 Bytes
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
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"allowJs": true,
"checkJs": true,
"noImplicitAny": true,
"strict": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"importHelpers": true,
// "isolatedModules": true,
"skipLibCheck": true,
// "verbatimModuleSyntax": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"sourceMap": true,
"lib": ["DOM", "ESNext"],
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDeclarationOnly": true,
"outFile": "JsEngine.js"
},
"include": ["jsEngine/**/*.ts", "jsEngine/**/*.svelte", "index.ts"]
}