forked from AIPexStudio/AIPex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
39 lines (39 loc) · 1.5 KB
/
tsconfig.base.json
File metadata and controls
39 lines (39 loc) · 1.5 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
36
37
38
39
{
"compilerOptions": {
"strict": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"baseUrl": ".",
"paths": {
"@aipexstudio/aipex-core": ["./packages/core/src"],
"@aipexstudio/aipex-core/*": ["./packages/core/src/*"],
"@aipexstudio/aipex-react": ["./packages/aipex-react/src"],
"@aipexstudio/aipex-react/*": ["./packages/aipex-react/src/*"],
"@aipexstudio/browser-runtime": ["./packages/browser-runtime/src"],
"@aipexstudio/browser-runtime/*": ["./packages/browser-runtime/src/*"]
},
"downlevelIteration": true,
"esModuleInterop": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": false,
"incremental": true,
"noErrorTruncation": true,
"composite": true,
"declaration": true,
"emitDeclarationOnly": true,
"resolveJsonModule": 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",
// A custom condition that can be set to the "exports" filed in package.json
// and it should directs to the source .ts files. This enables the
// jump-to-definition feature in IDEs to function properly.
"customConditions": ["dev-source"]
},
"exclude": ["**/dist/**", "**/node_modules/**"]
}