15 lines
289 B
JSON
15 lines
289 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"lib": ["es6"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": ["node_modules/", "tests/"]
|
|
}
|