-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
36 lines (36 loc) · 1.13 KB
/
tsconfig.base.json
File metadata and controls
36 lines (36 loc) · 1.13 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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"strict": true,
"sourceMap": true,
"inlineSources": true,
"noImplicitAny": false,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"strictPropertyInitialization": false,
"esModuleInterop": true,
"importHelpers": true,
"target": "es2022",
"module": "esnext",
"lib": ["es2022", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"paths": {
"@enclave-vm/ast": ["libs/ast/src/index.ts"],
"@enclave-vm/core": ["libs/core/src/index.ts"],
"@enclave-vm/types": ["libs/types/src/index.ts"],
"@enclave-vm/stream": ["libs/stream/src/index.ts"],
"@enclave-vm/broker": ["libs/broker/src/index.ts"],
"@enclave-vm/client": ["libs/client/src/index.ts"],
"@enclave-vm/react": ["libs/react/src/index.ts"],
"@enclave-vm/runtime": ["libs/runtime/src/index.ts"],
"@enclave-vm/browser": ["libs/browser/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}