Initial Portfolio #1

Merged
McPeakML merged 12 commits from mcpeakml/portfolio into main 2026-06-11 16:21:00 -04:00
Showing only changes of commit 2ef5ae92b5 - Show all commits

View file

@ -1,27 +1,28 @@
// TSConfig for modules that run in Node.js environment via either transpilation or type-stripping. // TSConfig for modules that run in Node.js environment via either transpilation or type-stripping.
{ {
"extends": "@tsconfig/node24/tsconfig.json", "extends": "@tsconfig/node24/tsconfig.json",
"include": [ "include": [
"vite.config.*", "vite.config.*",
"vitest.config.*", "vitest.config.*",
"cypress.config.*", "cypress.config.*",
"playwright.config.*", "playwright.config.*",
"eslint.config.*" "eslint.config.*"
], ],
"compilerOptions": { "exclude": ["src/**/__tests__/*"],
// Most tools use transpilation instead of Node.js's native type-stripping. "compilerOptions": {
// Bundler mode provides a smoother developer experience. // Most tools use transpilation instead of Node.js's native type-stripping.
"module": "preserve", // Bundler mode provides a smoother developer experience.
"moduleResolution": "bundler", "module": "preserve",
"moduleResolution": "bundler",
// Include Node.js types and avoid accidentally including other `@types/*` packages. // Include Node.js types and avoid accidentally including other `@types/*` packages.
"types": ["node"], "types": ["node"],
// Disable emitting output during `vue-tsc --build`, which is used for type-checking only. // Disable emitting output during `vue-tsc --build`, which is used for type-checking only.
"noEmit": true, "noEmit": true,
// `vue-tsc --build` produces a .tsbuildinfo file for incremental type-checking. // `vue-tsc --build` produces a .tsbuildinfo file for incremental type-checking.
// Specified here to keep it out of the root directory. // Specified here to keep it out of the root directory.
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo" "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo"
} }
} }