model-modeling-language/tsconfig.json
JanikNex 9daa66344f updated to langium 2.1.0
regenerated project with new langium generator, reintegrated custom services, updated file structure
2023-12-09 08:57:32 +01:00

25 lines
482 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"module": "Node16",
"lib": ["ESNext"],
"sourceMap": true,
"outDir": "out",
"strict": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"moduleResolution": "Node16",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"out",
"node_modules"
]
}