forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (35 loc) · 889 Bytes
/
tsconfig.json
File metadata and controls
36 lines (35 loc) · 889 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
34
35
36
{
"$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": [
"node",
"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",
"tools/gutenberg/download.js",
"tools/gutenberg/utils.js"
]
}