-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (32 loc) · 815 Bytes
/
tsconfig.json
File metadata and controls
33 lines (32 loc) · 815 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
29
30
31
32
33
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"module": "preserve",
"target": "ES2020",
"moduleResolution": "bundler",
"strict": true,
"erasableSyntaxOnly": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": false,
"lib": [ "es2020", "dom" ],
"typeRoots": [ "./typings", "./node_modules/@types" ],
"types": [
"wp-globals",
"codemirror/addon/lint/lint",
"codemirror/addon/hint/show-hint"
]
},
"include": [],
"files": [
"src/js/_enqueues/wp/code-editor.js",
"src/js/_enqueues/lib/codemirror/javascript-lint.js",
"src/js/_enqueues/lib/codemirror/htmlhint-kses.js"
]
}