#Compiling problems
5 messages · Page 1 of 1 (latest)
thats my tsconfig.json file
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": false,
"module": "CommonJS",
"moduleResolution": "Node",
"lib": ["ES2022", "dom"],
"baseUrl": "./src",
"paths": {
"@services/*": ["services/*"]
},
"resolveJsonModule": true,
"inlineSourceMap": true,
"outDir": "dist",
"removeComments": true,
"importsNotUsedAsValues": "remove",
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"noEmitOnError": true,
"skipLibCheck": true,
"allowJs": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}
when i compile my code using tsc
it generate a dist file with a src and package.json