2015-11-25 08:37:29 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es5",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"rootDir": ".",
|
2015-12-01 02:34:54 +08:00
|
|
|
"sourceMap": true,
|
2016-02-06 09:21:54 +08:00
|
|
|
"declaration": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true
|
2015-11-25 08:37:29 +08:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
2015-11-26 01:44:58 +08:00
|
|
|
],
|
|
|
|
"files": [
|
2016-02-06 09:21:54 +08:00
|
|
|
"src/index.ts",
|
|
|
|
"typings/es6-shim/es6-shim.d.ts"
|
2015-11-26 01:44:58 +08:00
|
|
|
],
|
2016-02-06 07:23:09 +08:00
|
|
|
"compileOnSave": false,
|
|
|
|
"buildOnSave": false,
|
2015-11-26 01:44:58 +08:00
|
|
|
"atom": {
|
|
|
|
"rewriteTsconfig": true
|
|
|
|
}
|
|
|
|
}
|