-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 879 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 879 Bytes
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
26
27
28
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"declaration": true,
"erasableSyntaxOnly": true,
"esModuleInterop": true,
"importHelpers": false,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmit": true,
"noUncheckedIndexedAccess": true,
"outDir": "dist",
"paths": {
"@exercode/problem-utils": ["./src/index.ts"],
"@exercode/problem-utils/presets/*": ["./src/presets/*.ts"]
},
"resolveJsonModule": true,
"rootDir": ".",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"types": ["node", "vitest/globals"]
},
"exclude": ["test/fixtures"],
"extends": ["@tsconfig/node-lts/tsconfig.json", "@tsconfig/node-ts/tsconfig.json", "@tsconfig/node24/tsconfig.json"],
"include": ["*.config.ts", "scripts/**/*", "src/**/*", "test/**/*"]
}