16 lines
383 B
JSON
16 lines
383 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": { "*": ["types/*"] },
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"target": "esnext",
|
|
"strictNullChecks": true
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["src"]
|
|
}
|