-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
45 lines (45 loc) · 1.41 KB
/
tsconfig.base.json
File metadata and controls
45 lines (45 loc) · 1.41 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
44
45
{
"compileOnSave": false,
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"composite": true,
"declaration": true,
"declarationMap": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"isolatedModules": true,
"lib": ["es2022", "dom"],
"module": "es2022",
"moduleResolution": "bundler",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": false,
"noPropertyAccessFromIndexSignature": false,
"noUnusedLocals": true,
"resolveJsonModule": true,
"resolvePackageJsonExports": true,
"rootDir": ".",
"skipLibCheck": true,
"strict": true,
"useDefineForClassFields": false,
"target": "es2022",
"types": ["node"],
"paths": {
"@box-model/storybook-utils": ["libs/storybook-utils/src/index.ts"],
"@box-model/tokens/tokens.stylex": ["dist/libs/tokens/tokens.stylex.ts"],
"@box-model/tokens/*": ["dist/libs/tokens/*"],
"@box-model/web/*": ["libs/web/src/*"],
"@box-model/rsd/*": ["libs/rsd/src/*"],
"@box-model/rsd-app": ["libs/rsd-app/src/index.ts"],
"@box-model/rsd-app/*": ["libs/rsd-app/src/*"]
}
},
"exclude": ["node_modules", "tmp"]
}