15 lines
310 B
JSON
15 lines
310 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "ES2025",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"types": ["node"],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "dist/lib",
|
|
"rootDir": "src/ts"
|
|
},
|
|
"include": ["src/ts/**/*.ts"],
|
|
"exclude": ["test/**/*"]
|
|
}
|