-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 943 Bytes
/
tsconfig.json
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
29
30
31
32
33
34
35
{
"ts-node": {
"moduleTypes": {
"jest.config.ts": "cjs"
}
},
"compilerOptions": {
"target": "es2017",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vitest/globals"],
"resolveJsonModule": true,
"esModuleInterop": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./types",
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"module": "ESNext",
"moduleResolution": "node",
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": false,
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"@citolab/qti-components/qti-convert": ["src/lib/qti-converter"]
}
},
"include": ["src/**/*.ts", "./jest.config.ts"]
}