mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00

- add parameter to prevent escaping value in SimpleRSSElement's addChild method - clean prosemirror residue (typedef + DEPENDENCIES.md) - remove type definition generation in tsconfig fixes #138, #71
27 lines
871 B
JSON
27 lines
871 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Basic Options */
|
|
"module": "esnext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"noEmit": true,
|
|
|
|
/* Strict Type-Checking Options */
|
|
"strict": true /* Enable all strict type-checking options. */,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
/* Module Resolution Options */
|
|
"moduleResolution": "node",
|
|
"baseUrl": "app/Resources/js" /* Base directory to resolve non-absolute module names. */
|
|
},
|
|
"include": ["app/Resources/js/**/*.ts"],
|
|
"exclude": []
|
|
}
|