mono/packages/registry/tsconfig.json

30 lines
560 B
JSON

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