MindMap/others_deletable/ai-content-analyzer/tsconfig.json

22 lines
381 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"lib": ["ES2020", "DOM"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "./",
"declaration": true
},
"include": [
"*.ts"
],
"exclude": [
"node_modules",
"dist"
]
}