generated from payloadcms/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
27 lines (27 loc) · 939 Bytes
/
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
{
"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"
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts", "src/**/*.json"],
"exclude": ["dist", "build", "node_modules"]
}