Skip to content
Snippets Groups Projects
Select Git revision
  • ab2ff75179b3a97939d5c802e370f32c1978b99b
  • master default protected
  • documentations-html-f0e8dcec4bba9d7e8b79b95b79fedf732f2d19ec
  • documentations-html-fd10cfaeb1ac3b2fcd47b527a8ece2958c0a2dbe
  • documentations-html-fbb6ca14cc3bec2a3e98ba0cbb3fd98600828f8c
  • documentation-non-recours
  • pote_2023
  • ajout-variable-taux-allegement-general
  • tester-variable-taux-allegement-cotisations
  • ppa-rsa
  • documentations-html-acad4c9f95a39e798170e3e9ab147b24b9f7e613
  • 184-ajouter-une-variable-sur-le-non-recours
  • aides-logement
  • statistiques_impot
  • documentations-html-ab2ff75179b3a97939d5c802e370f32c1978b99b
  • statistiques_impot_corrections_chloe
  • documentations-html-e96b6fd1b3963bc54903d8de1e23ea3f7dbb2e00
  • cdhr_reform
  • memo_pfu
  • 177-integration-erfs-2021-pipeline
  • 175-ajout-code-casd
21 results

LICENSE

Blame
  • This project is licensed under the GNU Affero General Public License v3.0. Learn more
    tsconfig.json 936 B
    {
      "compilerOptions": {
        "moduleResolution": "node",
        "target": "es2018",
        /**
          svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
          to enforce using \`import type\` instead of \`import\` for Types.
          */
        "importsNotUsedAsValues": "error",
        "isolatedModules": true,
        /**
          To have warnings/errors of the Svelte compiler at the correct position,
          enable source maps by default.
          */
        "sourceMap": true,
        "esModuleInterop": true,
        "skipLibCheck": true,
        "forceConsistentCasingInFileNames": true,
        "baseUrl": ".",
        "allowJs": true,
        "checkJs": true,
        "paths": {
          "$app/*": [".svelte/dev/runtime/app/*", ".svelte/build/runtime/app/*"],
          "$service-worker": [".svelte/build/runtime/service-worker"],
          "$lib/*": ["src/lib/*"]
        }
      },
      "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.ts", "src/**/*.svelte"]
    }