forked from box/box-ui-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
20 lines (20 loc) · 712 Bytes
/
tsconfig.json
File metadata and controls
20 lines (20 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"extends": "./node_modules/@box/frontend/ts/tsconfig",
"compilerOptions": {
"esModuleInterop": true,
"jsx": "react",
"baseUrl": ".",
"outDir": "es",
"allowJs": false, // https://github.com/microsoft/TypeScript/issues/35470
"checkJs": false,
"rootDir": ".",
"moduleResolution": "bundler",
"paths": {
"box-locale-data": ["node_modules/@box/cldr-data/locale-data/en-US"],
"react": ["node_modules/@types/react"]
},
"strict": false
},
"files": [".storybook/typings.d.ts"],
"include": ["src/**/*.ts", "src/**/*.tsx", "examples/src/**.tsx", "types.ts", "scripts/jest/jest-setup.ts"]
}