move type to types folder

This commit is contained in:
Maroxy 2021-10-24 10:46:21 +02:00
parent fe8908119c
commit a758d82da0
3 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import GIJSON from './GIJSON';
import GIJSON from '../types/GIJSON';
import { Tools } from './Tools';
const https = require('follow-redirects').https;

View file

@ -9,6 +9,6 @@
"removeComments": true,
"outDir": "public/js"
},
"include": ["src/ts/*", "src/ts/lib/*"],
"include": ["src/ts/*", "src/ts/lib/*", "src/ts/types/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
}