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