38 lines
696 B
JSON
38 lines
696 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsxImportSource": "react",
|
|
"jsx": "react-jsx",
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"node",
|
|
"@testing-library/jest-dom"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"test/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |