25 lines
598 B
JSON
25 lines
598 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ESNext",
|
||
|
"useDefineForClassFields": true,
|
||
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
||
|
"allowJs": false,
|
||
|
"skipLibCheck": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"module": "NodeNext",
|
||
|
"moduleResolution": "NodeNext",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"noEmit": true,
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/*": ["src/client/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": ["src"]
|
||
|
}
|