message-schemas/tsconfig.json

22 lines
391 B
JSON
Raw Normal View History

2024-03-21 19:45:27 +01:00
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"rootDir": "src/",
"outDir": "dist/",
"strictNullChecks": true,
2024-03-21 19:45:27 +01:00
"plugins": [
{
"transform": "typia/lib/transform"
}
]
2024-03-21 19:45:27 +01:00
},
"include": [
"src/"
]
}