standardnotes-server/tsconfig.json

79 lines
1.5 KiB
JSON
Raw Normal View History

2022-06-21 09:25:52 +00:00
{
"compilerOptions": {
"alwaysStrict": true,
"declaration": true,
"declarationMap": true,
2022-06-21 09:25:52 +00:00
"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": [
{
2022-07-06 08:36:32 +00:00
"path": "./packages/analytics"
},
{
"path": "./packages/api-gateway"
2022-06-22 10:33:00 +00:00
},
{
"path": "./packages/auth"
2022-06-22 14:16:03 +00:00
},
2022-07-06 10:02:32 +00:00
{
"path": "./packages/common"
},
{
"path": "./packages/domain-core"
},
2022-07-06 08:01:18 +00:00
{
"path": "./packages/domain-events"
},
2022-07-06 08:11:17 +00:00
{
"path": "./packages/domain-events-infra"
},
2022-06-22 14:16:03 +00:00
{
2022-07-06 08:36:32 +00:00
"path": "./packages/files"
2022-06-22 14:44:45 +00:00
},
{
"path": "./packages/grpc"
},
2022-07-06 08:49:22 +00:00
{
"path": "./packages/predicates"
},
{
"path": "./packages/revisions"
},
2022-06-22 14:44:45 +00:00
{
2022-07-06 08:36:32 +00:00
"path": "./packages/scheduler"
2022-06-23 09:33:14 +00:00
},
2022-07-06 09:24:08 +00:00
{
"path": "./packages/security"
},
2022-07-06 10:05:54 +00:00
{
"path": "./packages/settings"
},
2022-06-23 09:33:14 +00:00
{
2022-07-06 08:36:32 +00:00
"path": "./packages/syncing-server"
2022-07-06 09:46:04 +00:00
},
{
"path": "./packages/time"
2022-10-06 09:54:22 +00:00
},
{
"path": "./packages/websockets"
2022-06-21 09:25:52 +00:00
}
]
}