2021-03-25 14:22:43 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-01-22 13:35:11 +00:00
|
|
|
"target": "ESNext",
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
|
|
"strict": true,
|
2021-08-14 12:59:08 +00:00
|
|
|
"allowJs": false,
|
2022-03-16 06:26:15 +00:00
|
|
|
"skipLibCheck": true,
|
2021-03-25 14:22:43 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-01-22 13:35:11 +00:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
2021-03-25 14:22:43 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2022-03-16 06:26:15 +00:00
|
|
|
"jsx": "preserve",
|
|
|
|
"baseUrl": "./",
|
2022-01-22 13:35:11 +00:00
|
|
|
"incremental": true,
|
2022-03-16 06:26:15 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
}
|
2021-03-25 14:22:43 +00:00
|
|
|
},
|
2022-03-28 17:10:24 +00:00
|
|
|
"include": ["./src", "./test"]
|
2021-03-25 14:22:43 +00:00
|
|
|
}
|