21 lines
541 B
JSON
21 lines
541 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": { "@/*": ["src/*"] },
|
||
|
|
"typeRoots": ["/tmp/ts-check/node_modules/@types"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"]
|
||
|
|
}
|