forked from microsoft/ObjectStoreProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 673 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 673 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
{
"compilerOptions": {
"declaration": true,
"noResolve": false,
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"outDir": "dist/",
"typeRoots": ["node_modules/@types"],
"downlevelIteration": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictPropertyInitialization": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"sourceMap": true,
"lib": ["es2015", "dom", "es2016"]
},
"filesGlob": ["src/**/*.ts"],
"exclude": ["dist", "node_modules"]
}