forked from evershopcommerce/evershop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 698 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 698 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
{
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2018",
"lib": ["dom", "dom.iterable", "esnext"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"declaration": true,
"declarationDir": "./dist/types",
"sourceMap": true,
"allowJs": true,
"checkJs": false,
"jsx": "preserve",
"outDir": "./dist",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"allowArbitraryExtensions": true,
"baseUrl": ".",
"paths": {
"@components/*": ["./packages/evershop/src/components/*"]
}
},
"include": ["./packages/evershop/src"]
}