This repository has been archived on 2021-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
magento-ts-client/tsconfig.json
2021-07-24 13:30:56 +02:00

29 lines
532 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"allowJs": false,
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": true,
"sourceMap": true,
"outDir": "./",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"pretty": true,
"baseUrl": "./src",
"rootDir": "./src",
"watch": false,
"allowSyntheticDefaultImports": true
},
"compileOnSave": false,
"filesGlob": [
"./src/**/*.ts"
],
"atom": {
"rewriteTsconfig": true
},
"files": [
"./src/index.ts"
]
}