Skip to content

Commit b9383f3

Browse files
Clean up tsconfig
1 parent e9dbedd commit b9383f3

7 files changed

Lines changed: 5 additions & 39 deletions

File tree

packages/cheatsheet-local/tsconfig.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@
55
"lib": ["dom", "es2022"],
66
"jsx": "react-jsx",
77
"jsxImportSource": "preact",
8-
"allowSyntheticDefaultImports": true,
9-
"skipLibCheck": true,
10-
"esModuleInterop": true,
11-
"allowJs": true
12-
},
13-
"ts-node": {
14-
"esm": true
8+
"skipLibCheck": true
159
},
1610
"include": [
1711
"src/**/*.ts",

packages/cheatsheet/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"lib": ["dom", "es2022"],
66
"jsx": "react-jsx",
77
"jsxImportSource": "preact",
8-
"esModuleInterop": true,
98
"skipLibCheck": true
109
},
1110
"include": [

packages/cursorless-everywhere-talon-core/src/types/global.d.ts

Lines changed: 0 additions & 17 deletions
This file was deleted.

packages/cursorless-everywhere-talon-core/src/types/talon.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ declare module "talon" {
33
TalonActions,
44
TalonContextConstructor,
55
TalonSettings,
6-
} from "./talon";
6+
} from "@cursorless/cursorless-everywhere-talon-core";
77

88
export const actions: TalonActions;
99
export const settings: TalonSettings;
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
{
22
"extends": "../../tsconfig.base.json",
3-
"compilerOptions": {
4-
"skipLibCheck": true,
5-
"typeRoots": ["src/types", "node_modules/@types"]
6-
},
73
"include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"]
84
}
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
{
22
"extends": "../../tsconfig.base.json",
3-
"compilerOptions": {
4-
"skipLibCheck": true
5-
},
63
"include": [
74
"src/**/*.ts",
85
"src/**/*.json",
96
"../../typings/**/*.d.ts",
10-
"../cursorless-everywhere-talon-core/src/types/**/*.d.ts"
7+
"../cursorless-everywhere-talon-core/src/types/talon.d.ts",
8+
"../cursorless-everywhere-talon-core/src/types/quickjs.d.ts"
119
]
1210
}

packages/cursorless-org/tsconfig.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@
66
"jsx": "react-jsx",
77
"jsxImportSource": "preact",
88
"skipLibCheck": true,
9-
"noEmit": true,
10-
"esModuleInterop": true,
11-
"resolveJsonModule": true,
12-
"isolatedModules": true,
13-
"incremental": true
9+
"isolatedModules": true
1410
},
1511
"include": [
1612
"src/**/*.ts",

0 commit comments

Comments
 (0)