overflow_app/tsconfig.json

47 lines
834 B
JSON
Raw Normal View History

2017-06-21 11:24:44 +00:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
2017-07-14 11:17:49 +00:00
"baseUrl": ".",
2017-06-21 11:24:44 +00:00
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": [
"dom",
"es5",
"es6"
],
2017-07-14 11:17:49 +00:00
"module": "umd",
2017-06-21 11:24:44 +00:00
"moduleResolution": "node",
"newLine": "LF",
"noImplicitAny": false,
"noImplicitThis": false,
"outDir": "dist/ts/",
"preserveConstEnums": true,
"pretty": true,
2017-07-14 11:17:49 +00:00
"paths": {
"*": [
"./src/ts/*",
"./types/*"
]
},
2017-06-21 11:24:44 +00:00
"removeComments": true,
"sourceMap": true,
2017-07-07 06:42:42 +00:00
"target": "es5",
"typeRoots": [
"node_modules/@types",
"types"
]
2017-06-21 11:24:44 +00:00
},
"include": [
"src/ts/**/*"
],
"exclude": [
"build",
"config",
"node_modules",
2017-07-14 11:17:49 +00:00
"public",
"types"
2017-06-21 11:24:44 +00:00
]
}