2018-06-13 22:39:39 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": [ "es2015", "es5", "dom" ],
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es5",
|
|
|
|
"moduleResolution": "node",
|
2018-07-31 01:59:52 +03:00
|
|
|
|
|
|
|
"outDir": "./",
|
|
|
|
|
|
|
|
"declaration": true,
|
2018-06-13 22:39:39 +03:00
|
|
|
|
|
|
|
"preserveSymlinks": true,
|
|
|
|
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
"pretty": false,
|
2018-07-31 01:59:52 +03:00
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2018-06-23 03:30:50 +03:00
|
|
|
"noImplicitAny": true,
|
2018-06-13 22:39:39 +03:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true
|
2018-06-14 09:25:56 +03:00
|
|
|
},
|
2018-06-22 03:24:30 +03:00
|
|
|
"files": [
|
|
|
|
"./src.ts/index.ts",
|
2018-06-23 03:30:50 +03:00
|
|
|
"./src.ts/wordlists/index.ts",
|
2018-07-23 01:25:36 +03:00
|
|
|
"./src.ts/shims/index.ts",
|
2018-07-31 01:59:52 +03:00
|
|
|
"./thirdparty.d.ts"
|
2018-06-14 09:25:56 +03:00
|
|
|
]
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
|