mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-16 23:40:32 +00:00
16 lines
365 B
JSON
16 lines
365 B
JSON
// For builds, excludes tests and mocks
|
|
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist",
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["**/__tests__/*/**", "**/__mocks__/*/**"]
|
|
}
|