chore(build): Add a tsconfig.json file, simply to allow Atom editor's Typescript plugin to
work without dropping tsconfig.json files and generated .js files in the source directory. Closes #1538
This commit is contained in:
parent
14988d4415
commit
5b104936ae
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"version": "1.5.0",
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"module": "commonjs",
|
||||
"declaration": false,
|
||||
"noImplicitAny": false,
|
||||
"removeComments": true,
|
||||
"noLib": false,
|
||||
"outDir": "dist/js/cjs"
|
||||
},
|
||||
"filesGlob": [
|
||||
"./**/*.ts",
|
||||
"!./node_modules/**/*.ts"
|
||||
],
|
||||
}
|
Loading…
Reference in New Issue