ribbit/tsconfig.json
2026-04-29 05:02:25 +00:00

16 lines
319 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ES2017",
"module": "ESNext",
"moduleResolution": "bundler",
"outDir": "dist",
"rootDir": "src/ts",
"declaration": true,
"sourceMap": true,
"lib": ["ES2019", "DOM"]
},
"include": ["src/ts/**/*.ts"],
"exclude": ["test/**/*"]
}