-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
tsconfig.base.json
30 lines (30 loc) · 1.12 KB
/
tsconfig.base.json
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
{
"compileOnSave": false,
"compilerOptions": {
"composite": true,
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": false,
"target": "es2018",
"strict": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"paths": {
"@farfetched/atomic-router": ["packages/atomic-router/src/index.ts"],
"@farfetched/core": ["packages/core/src/index.ts"],
"@farfetched/dev-tools": ["packages/dev-tools/src/index.ts"],
"@farfetched/io-ts": ["packages/io-ts/src/index.ts"],
"@farfetched/json-schema": ["packages/json-schema/src/index.ts"],
"@farfetched/runtypes": ["packages/runtypes/src/index.ts"],
"@farfetched/solid": ["packages/solid/src/index.ts"],
"@farfetched/superstruct": ["packages/superstruct/src/index.ts"],
"@farfetched/typed-contracts": ["packages/typed-contracts/src/index.ts"],
"@farfetched/zod": ["packages/zod/src/index.ts"],
"@farfetched/valibot": ["packages/valibot/src/index.ts"]
}
},
"exclude": ["node_modules"]
}