dyno-bot/caesar-develop/tsconfig.json

25 lines
604 B
JSON
Raw Permalink Normal View History

2020-09-12 20:08:48 +02:00
{
"compileOnSave": false,
"compilerOptions": {
"declaration": true,
"moduleResolution": "Node",
"module": "commonjs",
"outDir": "./build",
"lib": [
"es2017"
],
"forceConsistentCasingInFileNames": true,
"pretty": true,
"target": "ES2017",
"noImplicitAny": false,
"sourceMap": true,
"skipLibCheck": true,
"disableSizeLimit": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}