commons-typescript/tsconfig.json

24 lines
421 B
JSON
Raw Permalink Normal View History

2018-04-24 21:20:01 +09:00
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./src",
2018-05-16 19:03:27 +09:00
"outDir": "./dist",
2018-04-24 21:20:01 +09:00
"sourceMap": true,
2018-05-16 19:03:27 +09:00
"declaration": true,
2018-04-24 21:20:01 +09:00
"newLine": "LF",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"types": [
],
"lib": [
"es2017",
"dom"
]
}
}