standardnotes-server/tsconfig.json

45 lines
963 B
JSON
Raw Normal View History

2022-06-21 09:25:52 +00:00
{
"compilerOptions": {
"alwaysStrict": true,
"declaration": true,
"incremental": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"target": "es2022",
},
"exclude": ["**/*.spec.ts", "dist", "test-setup.ts"],
"references": [
{
"path": "./packages/scheduler"
2022-06-22 10:33:00 +00:00
},
{
"path": "./packages/auth"
2022-06-22 14:16:03 +00:00
},
2022-07-06 08:01:18 +00:00
{
"path": "./packages/domain-events"
},
2022-06-22 14:16:03 +00:00
{
"path": "./packages/syncing-server"
2022-06-22 14:44:45 +00:00
},
{
"path": "./packages/files"
2022-06-23 09:33:14 +00:00
},
{
"path": "./packages/api-gateway"
2022-06-21 09:25:52 +00:00
}
]
}