| 12345678910111213141516171819202122 |
- {
- "compilerOptions": {
- "composite": true,
- "target": "esnext",
- "moduleDetection": "force",
- "module": "esnext",
- "moduleResolution": "bundler",
- "types": ["bun-types"],
- "allowImportingTsExtensions": true,
- "allowJs": true,
- "noEmit": true,
- "downlevelIteration": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "strict": true,
- "skipLibCheck": true
- },
- "include": [
- "./Source/**/*.js",
- "./Build/**/*.ts"
- ]
- }
|