22 lines
553 B
JSON
22 lines
553 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@src/*": ["./src/*"],
|
|
"@tests/*": ["./tests/*"],
|
|
"@helpers/*": ["./tests/integration/helpers/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "tests/**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|