marp-template/tsconfig.json
2023-11-10 15:54:25 +01:00

17 lines
347 B
JSON

{
"extends": ["@tsconfig/strictest"],
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"types": [
"bun-types" // add Bun global
]
}
}