27 lines
665 B
JSON
27 lines
665 B
JSON
{
|
|
"compilerOptions": {
|
|
"ignoreDeprecations": "6.0",
|
|
"target": "ES2021",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@shared/*": ["shared/*"],
|
|
"@shared": ["shared"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src", "packages/*/src", "types", "shared"]
|
|
}
|