* feat(js): add SWC support chore(js): remove comment fix(js): clean up typecheck after merge fix(js): add tests to swc * fix(js): adjust typecheck * feat(js): add skipTypeCheck to library generator * fix(js): use Promise.all() * fix(js): pass in correct tsconfig path * cleanup(js): remove comment code * fix(js): use logger from devkit instead of console log * fix(js): remove unintended exit log * feat(js): add convert-to-swc generator to convert lib w/ tsc to swc * fix(js): reexport print diagnostics
16 lines
309 B
JSON
16 lines
309 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"outDir": "../../dist/out-tsc",
|
|
"declaration": true,
|
|
"types": ["node"]
|
|
},
|
|
"exclude": [
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts",
|
|
"./src/utils/typescript/test-fixtures/**/*.ts"
|
|
],
|
|
"include": ["**/*.ts"]
|
|
}
|