forked from assuncaocharles/react-indexed-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 681 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 681 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
{
"compileOnSave": false,
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"stripInternal": true,
"strictNullChecks": false,
"skipLibCheck": true,
"sourceMap": true,
"noImplicitAny": true,
"outDir": "./lib",
"allowUnreachableCode": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"typeRoots": ["node_modules/@types"],
"jsx": "react",
"lib": ["es2017", "dom"],
"esModuleInterop": true
},
"include": ["./src/**/*.ts", "src/indexed-context.tsx", "src/react-indexed-db.tsx", "src/index.tsx"],
"exclude": ["./node_modules/"]
}