mirror of
https://github.com/cupcakearmy/marp-template.git
synced 2024-11-01 03:04:12 +01:00
17 lines
347 B
JSON
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
|
||
|
]
|
||
|
}
|
||
|
}
|