0
KMKen Malley
This code sets the compilerOptions to use the baseUrl of src instead of the default of the current directory. It also excludes the node_modules and build directories. Finally, it includes the src directory.
0 Comments
{ "compilerOptions":{ "baseUrl": "src" }, "exclude": ["node_modules", "build"], "include": ["src"] }