mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-13 12:55:19 +00:00
30 lines
800 B
JSON
30 lines
800 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"outDir": "dist",
|
||
|
|
"incremental": true,
|
||
|
|
"declaration": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"isolatedModules": false,
|
||
|
|
"module": "CommonJS",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"noEmitOnError": false,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"pretty": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"target": "ES2017",
|
||
|
|
"rootDir": "src",
|
||
|
|
"baseUrl": ".",
|
||
|
|
// This is needed otherwise .tsbuildinfo wasn't being written
|
||
|
|
// into the dist folder for some reason.
|
||
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo"
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|