25 lines
No EOL
519 B
JSON
25 lines
No EOL
519 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"noImplicitReturns": true,
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@code/*": [
|
|
"day3/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |