* Adding frequency dictionary for en_US and adding c# file for generating new dictionaries * Adding json configuration to allow testing for multiple language regions. * Changed assert to expect.js. * Tests use decompressed dictionaries in lib/
22 lines
370 B
JSON
Executable file
22 lines
370 B
JSON
Executable file
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "esnext",
|
|
"outDir": "lib",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"lib": [
|
|
"es2017",
|
|
"esnext",
|
|
"node"
|
|
],
|
|
"include": [
|
|
"src/js/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/js/**/*.spec.ts"
|
|
]
|
|
}
|