-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
24 lines (24 loc) · 898 Bytes
/
tsconfig.base.json
File metadata and controls
24 lines (24 loc) · 898 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
{
"compilerOptions": {
"ignoreDeprecations": "6.0",
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"paths": {
"js.foresight": ["./packages/js.foresight/src/index.ts"],
"js.foresight/*": ["./packages/js.foresight/src/*"],
"@foresightjs/react": ["./packages/foresightjs-react/src/index.ts"],
"@foresightjs/react/*": ["./packages/foresightjs-react/src/*"],
"@foresightjs/vue": ["./packages/foresightjs-vue/src/index.ts"],
"@foresightjs/vue/*": ["./packages/foresightjs-vue/src/*"]
}
},
"exclude": ["node_modules", "**/node_modules/**", "dist", "**/dist/**", "build", "**/build/**"]
}