statistiques/tsconfig.json

19 lines
429 B
JSON
Raw Normal View History

2024-06-02 12:34:08 +00:00
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "Node16",
"moduleResolution": "Node16",
"rootDir": "src",
"outDir": "dist",
"esModuleInterop": true,
"isolatedModules": true,
2024-06-02 12:34:08 +00:00
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}