forked from fsystech/cwserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
48 lines (48 loc) · 1.32 KB
/
Copy pathtsconfig.json
File metadata and controls
48 lines (48 loc) · 1.32 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"allowUnreachableCode": false,
"noUnusedLocals": true,
"allowJs": false,
"allowUnusedLabels": false,
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"lib": ["es6"],
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": false,
"typeRoots": ["./node_modules/@types", "./lib"],
"outDir": "dist",
"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'. */
},
"lib": [ "ES6" ],
"include": [ "./lib", "./index.ts" ],
"exclude": [
"test",
"node_modules",
"definitions",
".vscode"
],
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
"**/*.fs-async.ts",
".git",
"node_modules"
],
"watch": [
"./lib",
"index.ts"
],
"exec": "npm start",
"ext": "ts"
}
}