April/jsconfig.json

26 lines
552 B
JSON
Raw Normal View History

2023-09-08 22:19:55 +02:00
{
2023-09-13 21:12:45 +02:00
"include": [
"*.json"
],
2023-09-08 22:19:55 +02:00
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": [
"bun-types" // add Bun global
]
}
}