📦 EqualifyEverything / equalify-iris

📄 tsconfig.json · 25 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25{
  "compilerOptions": {
    "target": "ES2022",
    "module": "NodeNext",
    "moduleResolution": "NodeNext",
    "lib": ["ES2023"],
    "types": ["node"],
    "strict": true,
    // Dead code cannot reaccumulate WITHIN a file. Neither flag reports an unused
    // `export`, though — not a constant nothing imports, and not a whole module — so
    // finding those is still a manual sweep over every exported name, and the next
    // cleanup pass has to do it rather than trust a green typecheck.
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "noEmit": true,
    "allowImportingTsExtensions": true,
    "verbatimModuleSyntax": true,
    "erasableSyntaxOnly": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true
  },
  "include": ["src/**/*.ts", "test/**/*.ts"]
}