1cfaf07b82
By adding basic linting of JSON files, we can ensure that they're actually valid and prevent e.g. test-failures caused by *accidental* errors when editing the `test/test_manifest.json` file (something that I've done *many* times myself). For now this simply uses the `recommended` configuration, but we can obviously tweak this later if/when needed. Please find additional information at https://github.com/azeemba/eslint-plugin-json
27 lines
523 B
JSON
27 lines
523 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "../../build/tmp",
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"baseUrl": "./",
|
|
"strict": true,
|
|
"types": [],
|
|
"lib": [
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"paths": {
|
|
"pdfjs-dist": ["../../build/typestest"],
|
|
"pdfjs-dist/*": ["../../build/typestest/build/*"]
|
|
}
|
|
},
|
|
"files": [
|
|
"main.ts"
|
|
]
|
|
}
|