concept-collection / commonroom-recorder
commonroom-recorder / tsconfig.json
18 lines · 408 BBlameHistoryRaw
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "NodeNext",
5 "moduleResolution": "NodeNext",
6 "lib": ["ES2022", "DOM"],
7 "types": ["node"],
8 "outDir": "dist",
9 "rootDir": "src",
10 "strict": true,
11 "noUncheckedIndexedAccess": true,
12 "noFallthroughCasesInSwitch": true,
13 "skipLibCheck": true,
14 "sourceMap": true,
15 "declaration": false
16 },
17 "include": ["src"]