17 lines
285 B
JSON
17 lines
285 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"newLine": "lf",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|