egoport/tsconfig.json
2023-11-20 19:32:02 +01:00

18 lines
397 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"lib": ["esnext"],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"outDir": "build",
"baseUrl": "src",
"skipLibCheck": true,
"strict": true,
},
"include": ["src/**/*.ts", "tests/**/*.ts"],
"exclude": ["node_modules"]
}