16 lines
418 B
JSON
16 lines
418 B
JSON
{
|
|
"include": ["src"],
|
|
"compilerOptions": {
|
|
"outDir": "build",
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true
|
|
},
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|