[QOTD-3] Configure TypeScript (tsconfig.json) #2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "ssmp/qotd-3-r6"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Configures TypeScript for the
quote-of-the-day-apiproject by adding atsconfig.jsonand an emptysrc/index.tsentry point. This establishes the TypeScript compilation baseline required for all subsequent source development.Changes Made
tsconfig.jsonwithstrict: true,target: ES2020,module: commonjs,rootDir: src,outDir: dist,esModuleInterop: true,skipLibCheck: truesrc/index.tsas the compilation entry pointNotes
tsc --noEmitverified to pass cleanly against the emptysrc/index.ts.Task: QOTD-3
Commit: [QOTD-3] Add tsconfig.json and empty src/index.ts