mono/packages/media/tsconfig.json
2025-02-13 23:57:33 +01:00

27 lines
536 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES2022",
"allowJs": true,
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": true,
"inlineSourceMap": true,
"outDir": "./",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"pretty": true,
"baseUrl": "./src",
"rootDir": "./src",
//"esModuleInterop": true,
//"moduleResolution": "Node",
"allowSyntheticDefaultImports": true
},
"filesGlob": [
"./src/**/*.ts"
],
"files": [
"./src/index.ts",
"./src/main.ts"
]
}