rdio-scanner/tsconfig.json
Chrystian Huot 7c2ee69151 first commit
2019-06-12 11:43:21 -04:00

39 lines
736 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"importHelpers": true,
"experimentalDecorators": true,
"lib": [
"dom",
"esnext"
],
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5",
"skipLibCheck": true,
"stripInternal": true,
"noImplicitAny": false,
"types": [
"@types/meteor",
"@types/multiparty",
"@types/node"
]
},
"include": [
"imports/**/*.ts",
"client/**/*.ts",
"server/**/*.ts"
],
"exclude": [
"node_modules"
],
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}