alina sireneva
64da48926f
- improved bun support - deno support - use antfu/eslint-config - fixed some issues - removed pre-commit hooks
30 lines
758 B
Handlebars
30 lines
758 B
Handlebars
{{emit_if (and features.typescript (ne runtime "deno"))}}
|
|
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
{{#if (eq runtime "bun")}}
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
{{else}}
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
{{/if}}
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"./src"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
]
|
|
}
|