-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfigDecl.json
More file actions
41 lines (41 loc) · 1.03 KB
/
Copy pathtsconfigDecl.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
37
38
39
40
41
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": false,
"sourceMap": true,
"rootDir": "./scripts",
"outDir": "./types",
"emitDeclarationOnly": true,
"declarationDir": "./types",
"isolatedDeclarations": false,
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"lib": [
"esnext",
"DOM",
"DOM.Iterable",
"esnext.disposable"
],
"types": []
},
"files": [
"scripts/pathux.ts", "scripts/pathux_with_docbrowser.ts"
],
"rootDir": "./scripts",
"outDir": "types",
"exclude": [
"node_modules",
"dist",
"scripts/lib/tinymce/**",
"scripts/**/*.test.ts",
"scripts/path-controller/util/isect.js"
]
}