overflow_app/tsconfig.json
Byung Jun Park de3a771eed ing
2017-07-17 23:38:00 +09:00

43 lines
788 B
JSON

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