forked from cerc-io/snowballtools-base
Bump node v in docs workflow fix(docs): treat warnings as errors false fix(docs)Correct docs pattern in gitignore Add target branch to docs build fix(docs)Correct docs pattern in gitignore Add target branch to docs build Add target branch to docs build
25 lines
594 B
JSON
25 lines
594 B
JSON
{
|
|
"extends": [
|
|
"./packages/frontend/tsconfig.json",
|
|
"./packages/backend/tsconfig.json",
|
|
"./packages/gql-client/tsconfig.json"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["packages/*/src/**/*.ts", "packages/*/src/**/*.tsx"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"packages/*/node_modules",
|
|
"packages/*/dist",
|
|
"packages/frontend/src/stories"
|
|
]
|
|
}
|