snowflake-promise/tsconfig.json

21 lines
417 B
JSON
Raw Permalink Normal View History

2017-09-11 02:53:33 +00:00
{
"include": [
"src/**/*",
"test/**/*"
],
"compilerOptions": {
2019-09-13 17:44:58 +00:00
"rootDir": ".",
"outDir": "build",
2017-09-11 02:53:33 +00:00
"target": "ES5",
"module": "commonjs",
"sourceMap": true,
"lib": ["es5", "es2015.promise"],
"noImplicitReturns": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"pretty": true,
2017-09-11 04:35:48 +00:00
"forceConsistentCasingInFileNames": true,
"declaration": true
2017-09-11 02:53:33 +00:00
}
}