-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjsconfig.json
28 lines (28 loc) · 1.08 KB
/
jsconfig.json
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
{
"compilerOptions": {
"checkJs": true,
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"lib": [
"es2016",
"dom"
],
"esModuleInterop": true,
"paths": {
"editor_tiny/utils": ["../../amd/src/utils"],
"editor_tiny/loader": ["../../amd/src/loader"],
"editor_tiny/options": ["../../amd/src/options"],
"core/str": ["../../../../amd/src/str.js"],
"core/config": ["../../../../amd/src/config.js"],
"core/mustache": ["../../../../amd/src/mustache.js"],
"core/modal_factory": ["../../../../amd/src/modal_factory.js"],
"core/modal_events": ["../../../../amd/src/modal_events.js"],
"core/modal": ["../../../../amd/src/modal.js"],
"core/modal_registry": ["../../../../amd/src/modal_registry.js"],
"core/templates": ["../../../../amd/src/templates.js"],
"jquery": ["./tests/jsunit/node_modules/jquery/dist/jquery.js"]
}
},
}