overflow_app/tsconfig.json
2017-06-21 20:24:44 +09:00

36 lines
675 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "src/ts",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": [
"dom",
"es5",
"es6"
],
"module": "commonjs",
"moduleResolution": "node",
"newLine": "LF",
"noImplicitAny": false,
"noImplicitThis": false,
"outDir": "dist/ts/",
"preserveConstEnums": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"target": "es5"
},
"include": [
"src/ts/**/*"
],
"exclude": [
"build",
"config",
"node_modules",
"public"
]
}