-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
17 lines (17 loc) · 958 Bytes
/
Copy pathtsconfig.web.json
File metadata and controls
17 lines (17 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": { "@shared/*": ["src/shared/*"] }
},
"include": ["src/renderer/src", "src/shared", "src/main/pipeline/parse.ts", "tests/render.test.ts", "tests/addProjectModal.test.ts", "tests/branchSwitcher.test.ts", "tests/manageProjects.test.ts", "tests/editProjectModal.test.ts", "tests/topBarManage.test.ts", "tests/appDeleteActive.test.ts", "tests/session.test.ts", "tests/sessionRestore.test.ts", "tests/fuzzy.test.ts", "tests/commandPalette.test.ts", "tests/appPalette.test.ts", "tests/indexChanged.test.ts", "tests/theme.test.ts", "tests/themeGallery.test.ts", "tests/projectThemeSelect.test.ts", "tests/helpers/localStorage.ts"]
}