forked from shefing/payload-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 1.02 KB
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 1.02 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
{
"compilerOptions": {
"composite": true, // Make sure typescript knows that this module depends on their references
"noEmit": false /* Do not emit outputs. */,
"emitDeclarationOnly": true,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
"rootDir": "./src" /* Specify the root folder within your source files. */,
"declaration": true,
"declarationMap": true,
"allowJs": true,
"checkJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"moduleResolution": "Bundler",
"module": "ES6",
"sourceMap": true,
"strict": false,
"incremental": true,
"isolatedModules": true,
"target": "ESNext"
},
"paths": {
"@shefing/authors-info/client": ["./packages/authors-info/src/exports/client.ts"]
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts", "src/**/*.json"],
"exclude": ["dist", "build", "node_modules"]
}