-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
25 lines (25 loc) · 808 Bytes
/
tsconfig.base.json
File metadata and controls
25 lines (25 loc) · 808 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
{
"compilerOptions": {
"strict": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": false,
"incremental": true,
"noErrorTruncation": true,
"composite": true,
"declaration": true,
"emitDeclarationOnly": true,
"types": ["node"],
// Put the .d.ts files output and cache file (tsbuildinfo) in a directory
// that will be ignored by other tools.
"outDir": "${configDir}/node_modules/.cache/ts/out",
"tsBuildInfoFile": "${configDir}/node_modules/.cache/ts/tsbuildinfo",
"customConditions": ["paykit-source"]
},
"exclude": ["**/dist/**", "**/node_modules/**"]
}