works on WINDOWS?!?!
parent
6f8f279543
commit
9418af0d52
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"extension": [
|
||||
".ts"
|
||||
],
|
||||
"require": [
|
||||
"ts-node/esm.mjs"
|
||||
],
|
||||
"cache": false
|
||||
}
|
||||
|
|
@ -1,6 +1,5 @@
|
|||
import { expect } from 'chai';
|
||||
import '../src/extensions.ts';
|
||||
import sinon from 'sinon';
|
||||
|
||||
describe('extensions', () => {
|
||||
it('creates empty array extensions', () => {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { createAst } from '../out/createAst.js';
|
||||
import { createAst } from '../src/createAst.js';
|
||||
import { expect } from 'chai';
|
||||
import * as ModuleFiles from './lib/ModuleFiles.js'
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,8 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"module": "esnext",
|
||||
"module": "ES6",
|
||||
"moduleResolution": "node",
|
||||
"strict": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"target": "esnext",
|
||||
"sourceMap": true,
|
||||
"declaration": true
|
||||
"target": "es2020"
|
||||
},
|
||||
"include": [
|
||||
"**/*.ts"
|
||||
|
|
|
|||
Reference in New Issue