spellchecker-wasm/tsconfig.json
Mike Maietta 2db472fa15
Dictionaries/en_US (#18)
* 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/
2020-02-16 17:59:27 -08:00

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"
]
}