forked from bokuweb/re-resizable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
18 lines (18 loc) · 772 Bytes
/
tsconfig.json
File metadata and controls
18 lines (18 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"compilerOptions": {
"target": "ES5",
"module": "es2015",
"lib": ["es5", "es2015", "dom"],
"jsx": "react",
"declaration": true,
"outDir": "./lib",
"strict": true,
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
},
"exclude": ["stories", "lib"],
"include": [
"src"
]
}