21 lines
582 B
Plaintext
21 lines
582 B
Plaintext
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"lib": ["ES2020", "DOM"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|