-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
39 lines (39 loc) · 1.23 KB
/
tsconfig.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
29
30
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"types": ["vite/client", "node"],
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"alwaysStrict": false,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": false,
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
"sourceMap": true,
"jsx": "react",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"react": ["./node_modules/@types/react"],
"mjml-browser": ["./node_modules/@types/mjml"],
// for development
"easy-email-pro-asset-manager": [
"../packages/easy-email-pro-asset-manager"
],
"easy-email-pro-plugins": ["../packages/easy-email-pro-plugins"],
"easy-email-pro-kit": ["../packages/easy-email-pro-kit"],
"easy-email-pro-core": ["../packages/easy-email-pro-core"],
"easy-email-pro-theme": ["../packages/easy-email-pro-theme"],
"easy-email-pro-editor": ["../packages/easy-email-pro-editor"]
}
},
"include": ["./src"]
}