23 lines
532 B
JSON
23 lines
532 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "nodenext",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"moduleResolution": "nodenext",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|