20 lines
320 B
JSON
20 lines
320 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "CommonJS",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"strict": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|