-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
36 lines (36 loc) · 1.14 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
31
32
33
34
35
36
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2019",
"module": "commonjs",
"lib": ["es2019", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitOverride": true,
"composite": true,
"baseUrl": ".",
"paths": {
"@kjam/action": ["packages/action/index.ts"],
"@kjam/action-next": ["packages/action-next/index.ts"],
"@kjam/cli": ["packages/cli/index.ts"],
"@kjam/core": ["packages/core/index.ts"],
"@kjam/next": ["packages/next/index.ts"],
"@kjam/next-ui": ["packages/next-ui/index.ts"],
"@kjam/serializer": ["packages/serializer/index.ts"],
"@kjam/serializer-next": ["packages/serializer-next/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}