1
0
Fork 0
peertube/client/tsconfig.json

33 lines
657 B
JSON
Raw Normal View History

2016-03-07 13:48:46 +00:00
{
"compilerOptions": {
"target": "es5",
2016-05-13 12:18:37 +00:00
"module": "commonjs",
2016-03-07 13:48:46 +00:00
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2016-09-06 20:40:57 +00:00
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmitHelpers": true,
"importHelpers": true,
2016-09-06 20:40:57 +00:00
"strictNullChecks": false,
"baseUrl": "./src",
"paths": [
],
"lib": [
"dom",
"es6"
]
2016-06-04 09:06:06 +00:00
},
2016-09-06 20:40:57 +00:00
"exclude": [
"node_modules",
"dist"
],
2016-06-04 09:06:06 +00:00
"awesomeTypescriptLoaderOptions": {
2016-09-06 20:40:57 +00:00
"forkChecker": true,
"useWebpackText": true
2016-06-04 09:06:06 +00:00
},
"compileOnSave": false,
"buildOnSave": false,
2016-09-06 20:40:57 +00:00
"atom": { "rewriteTsconfig": false }
2016-03-07 13:48:46 +00:00
}