-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (35 loc) · 1.08 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
{
"compilerOptions": {
"jsx": "react",
"esModuleInterop": true,
"baseUrl": "src",
"inlineSourceMap": true,
"inlineSources": true,
"isolatedModules": true,
"module": "ESNext",
"target": "es6",
"allowJs": true,
"alwaysStrict": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"lib": ["dom", "es5", "scripthost", "es2020", "es2022"],
"skipLibCheck": true,
// "paths": {
// "react": ["node_modules/preact/compat/"],
// "react-dom": ["node_modules/preact/compat/"]
// }
},
"include": [
"**/*.ts",
"**/*.tsx",
"src/adapters/obsidian/ui/navigator/NavigatorView.tsx",
"src/core/utils/autosizer.js",
"src/core/utils/libs/detectElementResize.js",
"src/core/utils/sqljs.ts",
"src/core/react/components/UI/Menus/menu/Suggestions.jsx",
"src/shared/utils/uuid.js"
, "src/adapters/text/removemd.js", "src/core/utils/color/gradientParser.js", "src/core/react/components/SpaceEditor/ts.worker.js" ]
}