sourcebot/packages/schemas/tsconfig.json

30 lines
800 B
JSON
Raw Normal View History

{
"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"]
}