tingle-bot/tsconfig.json

15 lines
314 B
JSON
Raw Normal View History

2024-09-26 11:37:00 -07:00
{
"compilerOptions": {
"target": "ES6",
"module": "CommonJS",
"rootDir": "./src",
"outDir": "./prod",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"exclude": ["tests/**/*.spec.ts"]
}