forked from Ian-stetsenko/lore-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 748 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 748 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
26
{
"compilerOptions": {
"target": "es2022",
"module": "nodenext",
"moduleResolution": "nodenext",
"lib": ["es2024", "ESNext.Array", "ESNext.Collection", "ESNext.Iterator"],
"outDir": "./dist",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": false,
"declarationMap": false,
"sourceMap": true,
"isolatedModules": true,
"types": ["node"],
"ignoreDeprecations": "6.0",
"baseUrl": ".",
"paths": {
"@c-ferrier/atom-engine": ["packages/atom-engine/src/index.ts"],
"@c-ferrier/atom-engine/testing": ["packages/atom-engine/src/testing.ts"]
}
}
}