mirror of
https://github.com/Ahrimdon/detailed-cod-tracker.git
synced 2025-03-24 13:28:31 -04:00
22 lines
483 B
JSON
22 lines
483 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"importHelpers": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"module": "CommonJS",
|
||
|
"target": "es2015",
|
||
|
"esModuleInterop": true,
|
||
|
"lib": ["esnext"],
|
||
|
"outDir": "dist",
|
||
|
"sourceMap": true,
|
||
|
"declaration": true,
|
||
|
"skipLibCheck": true,
|
||
|
"typeRoots": [
|
||
|
"./@types",
|
||
|
"./node_modules/@types"
|
||
|
]
|
||
|
},
|
||
|
"include": ["src/**/*"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|