forked from standardagents/arrow-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
31 lines (31 loc) · 1.18 KB
/
tsconfig.base.json
File metadata and controls
31 lines (31 loc) · 1.18 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"allowJs": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@src": ["packages/core/src/index.ts"],
"@src/*": ["packages/core/src/*"],
"@arrow-js/core": ["packages/core/src/index.ts"],
"@arrow-js/core/internal": ["packages/core/src/internal.ts"],
"@arrow-js/framework": ["packages/framework/src/index.ts"],
"@arrow-js/framework/internal": ["packages/framework/src/internal.ts"],
"@arrow-js/framework/ssr": ["packages/framework/src/ssr.ts"],
"@arrow-js/ssr": ["packages/ssr/src/index.ts"],
"@arrow-js/hydrate": ["packages/hydrate/src/index.ts"],
"@arrow-js/highlight": ["packages/highlight/src/index.ts"],
"@arrow-js/sandbox": ["packages/sandbox/src/index.ts"],
"@arrow-js/compiler": ["packages/compiler/src/index.ts"],
"@arrow-js/vite-plugin-arrow": ["packages/vite-plugin-arrow/src/index.js"]
}
}
}