* add prettierignore, hoist script * upgrade prettier * bump prettier eslint deps * format all files * hoist prettier check * remove unused scripts, hoist lint:fix * remove npm-run-all, unused * hoist lint * remove lint scripts * improve lint scripts * remove prettierignores * downgrade prettier deps to fix codgen * reformat all files * update makefile, format * fix locklife * final format --------- Co-authored-by: dholms <dtholmgren@gmail.com>
13 lines
304 B
JSON
13 lines
304 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist", // Your outDir,
|
|
"emitDeclarationOnly": true
|
|
},
|
|
"include": ["./src", "__tests__/**/**.ts"],
|
|
"references": [
|
|
{ "path": "../nsid/tsconfig.build.json" },
|
|
{ "path": "../lexicon/tsconfig.build.json" }
|
|
]
|
|
}
|