web/packages/snjs/lib/tsconfig.json

34 lines
839 B
JSON
Raw Normal View History

2022-07-06 15:04:18 +03:00
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"baseUrl": ".",
"declaration": true,
"declarationDir": "../dist/@types",
"emitDeclarationOnly": true,
"esModuleInterop": true,
"isolatedModules": true,
"lib": ["es6", "dom", "es2016", "es2017"],
"module": "esnext",
2022-07-06 15:04:18 +03:00
"moduleResolution": "node",
"newLine": "lf",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "../dist/@types",
"skipLibCheck": true,
2022-07-06 15:04:18 +03:00
"strict": true,
"strictNullChecks": true,
"target": "es6",
2022-07-06 15:04:18 +03:00
"paths": {
"@Lib/*": ["*"],
"@Services/*": ["Services/*"]
}
},
"exclude": ["../package.json"]
}