24 lines
549 B
JSON
24 lines
549 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2019",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"rootDirs": ["src", "tests"],
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@/*": ["*"],
|
|
"@tests/*": ["../tests/*"]
|
|
},
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src", "tests", "mocks"]
|
|
}
|