20 lines
319 B
JSON
20 lines
319 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"strict": false,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"dist"
|
|
]
|
|
}
|