mirror of https://github.com/embarklabs/embark.git
20 lines
425 B
JSON
20 lines
425 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": ["es2017", "dom"],
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"typeRoots": ["node_modules/@types"],
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["./typings/*"]
|
|
},
|
|
"noImplicitThis": false
|
|
},
|
|
"include": ["./src/**/*"]
|
|
} |