monorepo-typescript
Version:
Typescript monorepo with workspaces and npm(not yarn). Forked js repo and making to do ts repo with workspaces. To work with npm need npm version 7 or higher. https://stackoverflow.com/questions/46947557/do-yarn-workspaces-work-with-npm-too https://
27 lines (26 loc) • 598 B
JSON
{
"compilerOptions": {
"experimentalDecorators": true,
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"target": "ES2020",
"noImplicitAny": true,
"declaration": true, // Создавать ли соответствующие файлы ".d.ts"?
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"sourceMap": true,
"skipLibCheck": true,
"baseUrl": ".",
"outDir": "dist",
"paths": {
"*": [
"node_modules/*"
]
}
},
"files": [
"index.ts"
],
}