File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -23,4 +23,5 @@ export * from './workspace/index.js';
2323// Export the Langium Grammar AST definitions in the `GrammarAST` namespace
2424import * as GrammarAST from './languages/generated/ast.js' ;
2525import type { Grammar } from './languages/generated/ast.js' ;
26- export { Grammar , GrammarAST } ;
26+ export type { Grammar } ;
27+ export { GrammarAST } ;
Original file line number Diff line number Diff line change 4646 // Skip type checking of declaration files.
4747 "skipLibCheck" : true ,
4848 // This setting controls how TypeScript determines whether a file is a script or a module.
49- "moduleDetection" : " force"
49+ "moduleDetection" : " force" ,
50+ // any imports or exports without a type modifier are left around. Anything that uses the type modifier is dropped entirely.
51+ "verbatimModuleSyntax" : true
5052 },
5153 "include" : [
5254 " **/src/**/*" ,
You can’t perform that action at this time.
0 commit comments