報錯了, exports is not defined
class.ts:
export class createPerson implements Person
export class Human implements Animals
main.ts:
import { createPerson,Human } from './class'
命令行:
tsc main.ts -t es5
瀏覽器:
ReferenceError: exports is not defined
? ? at main.js:2:23
感覺不至于說不支持ES5語法才對呀...瀏覽器是最新chrome...
2022-09-16
我也報錯網上都說要生成ts.config文件搞不懂