mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
18 lines
381 B
JSON
18 lines
381 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"incremental": true,
|
||
|
"rootDir": "src",
|
||
|
"target": "ES2020",
|
||
|
"module": "CommonJS",
|
||
|
"outDir": "./build",
|
||
|
"declaration": true,
|
||
|
"declarationDir": "./build",
|
||
|
"sourceMap": true,
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"strict": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": ["src/**/*"]
|
||
|
}
|