mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
build: Initial linting setup (#1560)
* sets up linting config and runs `yarn lint --fix` once, so that all changes will show up correctly in future PRs. * Note that there are still a lot of linter errors.
This commit is contained in:
committed by
Mayukha Vadari
parent
12cfed5c17
commit
8b95ee5fab
@@ -1,8 +1,24 @@
|
||||
{
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{ "path": "./src" },
|
||||
{ "path": "./snippets" }
|
||||
]
|
||||
}
|
||||
"compilerOptions": {
|
||||
"pretty": true,
|
||||
"target": "es6",
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"outDir": "./dist/npm",
|
||||
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"sourceMap": true,
|
||||
|
||||
"strict": true,
|
||||
"strictNullChecks": true,
|
||||
"noImplicitAny": false,
|
||||
"noUnusedLocals": true,
|
||||
"removeComments": true,
|
||||
"preserveConstEnums": false,
|
||||
"esModuleInterop": true,
|
||||
"suppressImplicitAnyIndexErrors": false,
|
||||
"resolveJsonModule": true,
|
||||
"preserveSymlinks": true
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user