JSTQL-JS-Transform/tsconfig.json

16 lines
359 B
JSON
Raw Permalink Normal View History

2023-09-13 12:45:06 +00:00
{
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
2024-06-13 18:23:15 +00:00
"strict": false,
"target": "es2017",
"module": "commonjs",
"sourceMap": true,
"esModuleInterop": true,
"moduleResolution": "node",
"types": ["bun-types"]
},
2024-05-31 14:26:18 +00:00
"include": ["src", "index.ts"],
"exclude": ["babel"]
}