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 { expect } from 'chai';
|
||||||
import '../src/extensions.ts';
|
import '../src/extensions.ts';
|
||||||
import sinon from 'sinon';
|
|
||||||
|
|
||||||
describe('extensions', () => {
|
describe('extensions', () => {
|
||||||
it('creates empty array 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 { expect } from 'chai';
|
||||||
import * as ModuleFiles from './lib/ModuleFiles.js'
|
import * as ModuleFiles from './lib/ModuleFiles.js'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,8 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "esnext",
|
"module": "ES6",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"strict": true,
|
"target": "es2020"
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"target": "esnext",
|
|
||||||
"sourceMap": true,
|
|
||||||
"declaration": true
|
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"**/*.ts"
|
"**/*.ts"
|
||||||
|
|
|
||||||
Reference in New Issue