mirror of
https://github.com/LerianStudio/ring
synced 2026-04-21 21:47:49 +00:00
22 lines
505 B
JSON
22 lines
505 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"types": ["bun-types", "node"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": ".",
|
||
|
|
"noEmit": true
|
||
|
|
},
|
||
|
|
"include": ["./**/*"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|