mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-16 15:47:25 +00:00
This also moves other modules and packages into `embark-core` which are affected by the move of `Engine`. It did some clean-up of some modules (e.g. `lib/utils/utils.js` had a lot of stuff that was not used anywhere). This is the first step to start typing our core inside out. For now we're just moving code into their dedicated package, after that we can address making use of TypeScript features as we see fit.
15 lines
288 B
JSON
15 lines
288 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ES2017", "dom"],
|
|
"module": "CommonJS",
|
|
"noEmit": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"target": "ES2017",
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|