-
Notifications
You must be signed in to change notification settings - Fork 60
/
tsconfig.base.json
51 lines (51 loc) · 1.9 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist/out-tsc",
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"module": "commonjs",
"strictNullChecks": true,
"noImplicitAny": false,
"alwaysStrict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"importHelpers": true,
"target": "es2015",
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"],
"esModuleInterop": true,
"jsx": "react-jsx",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@fundamental-styles/cx": ["packages/cx"],
"common-css": ["packages/common-css"],
"fundamental-styles/configuration": ["packages/configuration/src/index.ts"],
"fundamental-styles/doc-ui": ["packages/doc-ui/src/index.ts"],
"fundamental-styles/storybook": ["packages/storybook/src/index.ts"],
"fundamental-styles/storybook/current-package": ["packages/storybook/src/lib/addons/current-package"],
"fundamental-styles/utils": ["packages/utils/src/index.ts"],
"styles": ["packages/styles", "packages/styles/index.ts"],
"theming-preview": ["packages/theming-preview/src/index.js"],
"workspace-plugins": ["packages/workspace-plugins/src/index.ts"]
},
"skipLibCheck": true
},
"ts-node": {
"require": ["tsconfig-paths/register"],
"compilerOptions": {
"module": "CommonJS"
},
"transpileOnly": true
},
"exclude": ["node_modules", "tmp"]
}