-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
30 lines (29 loc) · 936 Bytes
/
tsconfig.base.json
File metadata and controls
30 lines (29 loc) · 936 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
27
28
29
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,
"types": ["node"],
"baseUrl": ".",
"paths": {
"@schepta/core": ["./packages/core/src"],
"@schepta/adapter-vanilla": ["./packages/adapters/vanilla/src"],
"@schepta/adapter-react": ["./packages/adapters/react/src"],
"@schepta/adapter-vue": ["./packages/adapters/vue/src"],
"@schepta/factory-vanilla": ["./packages/factories/vanilla/src"],
"@schepta/factory-react": ["./packages/factories/react/src"],
"@schepta/factory-vue": ["./packages/factories/vue/src"]
}
}
}