2023-10-07 17:29:53 +07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-02-25 19:50:21 +07:00
|
|
|
"target": "esnext",
|
2023-10-07 17:29:53 +07:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"rootDir": "./",
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true
|
|
|
|
|
},
|
2025-09-09 16:16:34 +07:00
|
|
|
"include": ["libs/**/*.ts","app.ts", "yaqrcode.d.ts"],
|
2023-10-07 17:29:53 +07:00
|
|
|
"exclude": ["node_modules","test-run"]
|
|
|
|
|
}
|