-
-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathtsconfig.eslint.json
More file actions
28 lines (28 loc) · 697 Bytes
/
tsconfig.eslint.json
File metadata and controls
28 lines (28 loc) · 697 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
28
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.options.json",
"compilerOptions": {
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"]
},
"include": [
"packages/*/*.js",
"packages/*/*.mjs",
"packages/*/src/**/*.ts",
"packages/*/test/**/*.ts",
"packages/*/tests/**/*.ts",
"packages/*/src/**/*.js",
"packages/*/test/**/*.js",
"packages/*/tests/**/*.js",
"packages/plugin-drizzle/drizzle.config.ts",
"examples/**/*.ts",
"examples/**/*.js",
"examples/**/*.tsx",
"website/**/*.tsx",
"website/**/*.ts",
"website/**/*.js",
"website/**/*.mjs",
"website/**/*.mdx",
"*.js"
]
}