41 lines
773 B
JSON
Executable file
41 lines
773 B
JSON
Executable file
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM"
|
|
],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"@lilith/types": [
|
|
"../../../@packages/@types/dist"
|
|
],
|
|
"@lilith/types/*": [
|
|
"../../../@packages/@types/dist/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"msw/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|