-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·29 lines (22 loc) · 742 Bytes
/
tsconfig.json
File metadata and controls
executable file
·29 lines (22 loc) · 742 Bytes
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
{
"compileOnSave": true,
"compilerOptions": {
"jsx": "react-jsx",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": false,
"declaration": true,
"declarationDir": "typings",
"emitDeclarationOnly": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNEXT",
"moduleResolution": "Node",
"outDir": "dist",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext"
},
"include": ["**/*.ts", "**/*.tsx", "src/rollup.config.js", "**/*.web.ts", "**/*.web.tsx", "**/*.native.ts", "**/*.native.tsx", "src/hooks/web/useKeyCodes/useKeyCodes.hook.tsx"],
"exclude": ["node_modules", "dist", "types", "*/**/.d.ts", "typings"],
}