* chore: upgrade to turbo v2 and reduce ci quality gate runtime * chore: upgrade to yarn v4 and deprecate turborepo * chore: reconfigure modules and fix tests * chore: switch to github-hosted runner * fix: dependency resolving * chore: clean redundant step * chore: headless test * chore: remove headed param * fix: resolve dependency version * fix: ubuntu no-sandbox test --------- Co-authored-by: Hien To <tominhhien97@gmail.com> Co-authored-by: Louis <louis@jan.ai>
18 lines
455 B
JSON
18 lines
455 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"declaration": true,
|
|
"declarationDir": "dist/types",
|
|
"types": ["jest", "@testing-library/jest-dom"],
|
|
"module": "esnext",
|
|
"lib": ["es6", "dom", "es2016", "es2017"],
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "Node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "*.test.ts"]
|
|
}
|