Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
trustworthy-module-registry/tsconfig.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (25 sloc)
1.66 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es2020", // Set the JavaScript version output (Node.js supports ES2020) | |
"module": "commonjs", // CommonJS is standard for Node.js | |
"lib": ["es2020"], // Include typings for ES2020 | |
"outDir": "./dist", // Redirect output structure to the directory | |
"rootDir": "./src", // Specify the root directory of input files | |
"strict": true, // Enable all strict type-checking options | |
"esModuleInterop": true, // Enables compilation of ES6 modules to conform to CommonJS | |
"skipLibCheck": true, // Skip type checking of all declaration files (*.d.ts) | |
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file | |
"resolveJsonModule": true, // Allow importing .json files | |
"moduleResolution": "node", // Choose the module resolution strategy for style Node.js | |
"experimentalDecorators": true, // Enable experimental support for decorators | |
"emitDecoratorMetadata": true, // Emit design-type metadata for decorated declarations | |
"removeComments": false // Do not remove comments - useful for source code documentation purposes | |
}, | |
"include": [ | |
"src/**/*" // Include all files in the src folder | |
], | |
"exclude": [ | |
"node_modules", // Exclude the node_modules directory | |
"**/*.test.ts" // Exclude test files from compilation to the output directory | |
] | |
} | |