
* web: Format live reload package. * web: Format package.json. * web: Revise globals. * web: Build entrypoints with a single ESBuild context. Clean up entrypoints. * web: WIP Prepare monorepo package for use. * web: Update build paths. Fix types. * web: WIP Add monorepo dependency. * web: Use monorepo utilities when building. * web: Fix issue where linters collide. Update ignore file. - Remove unused sort override for polyfills. * core: Prepare repo for NPM workspaces.
29 lines
937 B
JSON
29 lines
937 B
JSON
// TypeScript Project Configuration
|
|
{
|
|
"extends": "./packages/tsconfig/tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "."
|
|
},
|
|
"watchOptions": {
|
|
"excludeDirectories": [
|
|
"**/.git", // Git
|
|
"**/.yarn", // Yarn
|
|
"**/.vscode", // VS Code
|
|
"**/.vscode-test-web", // VS Code Web Test
|
|
"**/dist", // Distributed build files
|
|
"**/out", // Output build files
|
|
"**/.drafts", // Drafts
|
|
"**/.github", // GitHub
|
|
"**/node_modules" // Node modules
|
|
]
|
|
},
|
|
|
|
// The root project has no sources of its own. By setting `files` to an empty
|
|
// list, TS won't automatically include all sources below root (the default).
|
|
"files": [],
|
|
"references": [
|
|
// Note that references are in the order we want them to be built.
|
|
// TODO: Left blank until TypeScript workspaces are complete.
|
|
]
|
|
}
|