-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (35 loc) · 1.17 KB
/
tsconfig.json
File metadata and controls
35 lines (35 loc) · 1.17 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
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
"target": "esnext",
"module": "esnext",
"esModuleInterop": true,
"noEmitOnError": false,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"sourceMap": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"experimentalDecorators": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": false,
"noImplicitAny": false,
"jsx": "react-jsx",
"declaration": true,
"declarationMap": true,
"baseUrl": ".",
"paths": {
"@latte-js/bean": ["packages/bean/src/index.ts"],
"@latte-js/art": ["packages/art/src/index.ts"],
"@latte-js/espresso": ["packages/espresso/src/index.ts"],
"@latte-js/barista": ["packages/barista/src/index.ts"],
"@latte-js/barista/worker": ["packages/barista/src/worker/index.ts"],
"@latte-js/syrup": ["packages/syrup/src/index.ts"],
"@latte-js/counter": ["packages/counter/src/index.ts"],
"@latte-js/milk": ["packages/milk/src/index.ts"],
"@cafe/*": ["apps/cafe/src/*"]
}
}
}