-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
43 lines (43 loc) · 1.78 KB
/
tsconfig.base.json
File metadata and controls
43 lines (43 loc) · 1.78 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2019",
"module": "esnext",
"lib": ["es2019", "dom", "DOM.Iterable"],
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@griffel/babel-preset": ["packages/babel-preset/src/index.ts"],
"@griffel/core": ["packages/core/src/index.ts"],
"@griffel/devtools": ["packages/devtools/src/index.ts"],
"@griffel/e2e-utils": ["e2e/utils/src/index.ts"],
"@griffel/eslint-plugin": ["packages/eslint-plugin/src/index.ts"],
"@griffel/jest-serializer": ["packages/jest-serializer/src/index.ts"],
"@griffel/postcss-syntax": ["packages/postcss-syntax/src/index.ts"],
"@griffel/react": ["packages/react/src/index.ts"],
"@griffel/style-types": ["packages/style-types/src/index.ts"],
"@griffel/transform": ["packages/transform/src/index.mts"],
"@griffel/transform-shaker": ["packages/transform-shaker/src/index.ts"],
"@griffel/update-shorthands": ["tools/update-shorthands/src/index.ts"],
"@griffel/webpack-extraction-plugin": ["packages/webpack-extraction-plugin/src/index.ts"],
"@griffel/webpack-loader": ["packages/webpack-loader/src/index.ts"],
"@griffel/webpack-plugin": ["packages/webpack-plugin/src/index.mts"]
},
"typeRoots": ["node_modules/@types", "./typings"]
},
"exclude": ["node_modules", "tmp"]
}