super-productivity/tsconfig.base.json
2026-05-12 19:14:12 +02:00

38 lines
1.1 KiB
JSON

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"skipLibCheck": true,
"module": "preserve",
"moduleResolution": "bundler",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noImplicitAny": false,
"noImplicitOverride": true,
"strictPropertyInitialization": true,
"useDefineForClassFields": false,
"target": "ES2022",
"resolveJsonModule": true,
"typeRoots": ["node_modules/@types"],
"lib": ["es2022", "dom"],
"paths": {
"@super-productivity/plugin-api": ["packages/plugin-api/src/index.ts"],
"@sp/shared-schema": ["packages/shared-schema/src/index.ts"],
"@sp/sync-core": ["packages/sync-core/src/index.ts"],
"@sp/sync-providers": ["packages/sync-providers/src/index.ts"]
},
"plugins": [
{
"transform": "typia/lib/transform"
}
]
}
}