snowflake-promise/tsconfig.json
2019-09-13 10:44:58 -07:00

21 lines
417 B
JSON

{
"include": [
"src/**/*",
"test/**/*"
],
"compilerOptions": {
"rootDir": ".",
"outDir": "build",
"target": "ES5",
"module": "commonjs",
"sourceMap": true,
"lib": ["es5", "es2015.promise"],
"noImplicitReturns": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"pretty": true,
"forceConsistentCasingInFileNames": true,
"declaration": true
}
}