2025-08-14 21:29:36 +01:00
|
|
|
import fs,{readFile} from 'node:fs' with {abc: 'xyz'};
|
2025-08-01 20:19:24 +01:00
|
|
|
|
2025-08-02 13:55:41 +01:00
|
|
|
import classnames from 'classnames'
|
|
|
|
// import * as s from 'esprima'
|
2025-08-01 23:56:52 +01:00
|
|
|
// import {sum, div} from './arithmetic.cjs';
|
2025-07-26 13:44:32 +01:00
|
|
|
|
2025-08-01 23:56:52 +01:00
|
|
|
console.log(s.parseScript("const a = 5;")); // $ExpectType boolean
|
2025-08-02 13:55:41 +01:00
|
|
|
console.log(classnames(Object.freeze({a:true,b:true}))); // $ExpectType string
|
2025-08-01 23:56:52 +01:00
|
|
|
// console.log(sum(2, 3));
|
2025-08-01 20:19:24 +01:00
|
|
|
// console.log(neq('1.0.0', '1.0.1')); // $ExpectType boolean
|