-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 594 Bytes
/
tsconfig.json
File metadata and controls
21 lines (21 loc) · 594 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"target": "ESNext",
"module": "Preserve",
"moduleResolution": "bundler",
"jsx": "react",
"noEmit": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["node", "luna"],
"baseUrl": ".",
"paths": {
"@luna/lib": ["./luna/plugins/lib/src/index.ts"],
"@luna/lib.native": ["./luna/plugins/lib.native/src/index.native.ts"],
"@luna/core": ["./luna/render/src/index.ts"],
"@luna/ui": ["./luna/plugins/ui/src/index.tsx"],
"@luna/dev": ["./luna/plugins/dev/src/index.ts"]
}
}
}