-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 1014 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 1014 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": {
"baseUrl": ".",
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "preserve",
"module": "esnext",
"moduleResolution": "node",
"paths": {
"@react-loosely-lazy/integration-app": ["packages/testing/integration-app/src/index.tsx"],
"@react-loosely-lazy/manifest": ["packages/core/manifest/src/index.ts"],
"@react-loosely-lazy/parcel-reporter-manifest": ["packages/plugins/parcel-reporter-manifest/src/index.ts"],
"@react-loosely-lazy/parcel-transformer": ["packages/plugins/parcel-transformer/src/index.ts"],
"@react-loosely-lazy/webpack-plugin": ["packages/plugins/webpack/src/index.ts"],
"react-loosely-lazy": ["packages/core/react-loosely-lazy/src/index.ts"]
},
"preserveConstEnums": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"target": "esnext",
"typeRoots": ["node_modules/@types", "types"]
},
"exclude": ["packages/**/__tests__"]
}