9ff4c0dbd5
* Setup project-wide prettier * Remove old workspace file * Remove old debugging directives * New top-level .prettierignore * Updated Prettier config settings * Contrubuting guide: Fix for some bad code blocks * Added more ignores * Improved the format script command * printWidth set to 100 * Formatted entire repo (pnpm run format)
27 lines
695 B
JSON
27 lines
695 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSources": false,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "node16",
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"preserveWatchOutput": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["es2019"],
|
|
"module": "commonjs",
|
|
"target": "es2021"
|
|
},
|
|
"include": ["./src/**/*.ts", "tsup.config.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|